Skip to content

Commit

Permalink
Fix parameter errors in TransferService.py
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinz01 authored Dec 20, 2024
1 parent 3772e14 commit 8b1aa6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blueman/plugins/applet/TransferService.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ def _remove() -> bool:
_("Incoming file over Bluetooth"),
_("Incoming file %(0)s from %(1)s") % {"0": "<b>" + escape(filename) + "</b>",
"1": "<b>" + escape(name) + "</b>"},
30000, [("accept", _("Accept")), ("reject", _("Reject"))], on_action,
icon_name="blueman"
30000,
actions=[("accept", _("Accept")), ("reject", _("Reject"))], actions_cb=on_action, icon_name="blueman"
)
notification.show()
# Device is trusted or was already allowed, larger file -> display a notification, but auto-accept
Expand Down

0 comments on commit 8b1aa6f

Please sign in to comment.