OH3 + Pushover = Error

Hello everyone

OH3 runs in a docker container for testing. So far it looks good but i will switch to Pushover from Telegram for the Notifications on the Smartphone. But i get an error wehn i try to run the rule.

08:31:28.619 [ERROR] [.internal.handler.ScriptActionHandler] - Script execution of rule with UID 'pushover-1' failed: 'sendHtmlMessage' is not a member of 'org.openhab.core.thing.binding.ThingActions'; line 7, column 5, length 77 in pushover

thing looks like this

Thing pushover:MYACC:default [ apikey="vbvn", user="cvb" ]

rule

rule "Pushovertest Test"

when Item TestSW01 changed to ON

then
    
    val actions = getActions("pushover", "pushover:MYACC:default")
    actions.sendHtmlMessage("Hello <font color='green'>World</font>!", "openHAB")  

end

How can i fix this?

Ok found the error

pushover:MYACC:default

changed the MYACC to pushover-account

pushover:pushover-account:default

you can only edit the last part (pushover:pushover-account:THISCANCHANGE)