Skip to content

Commit

Permalink
fix(DesktopConnect): mdnsStartBroadcasting was meant to be an arrow
Browse files Browse the repository at this point in the history
function. I am dumb
  • Loading branch information
twnlink committed Aug 16, 2024
1 parent affc906 commit 36a26a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/DesktopConnect/desktop.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function openConnect() {
if (!globalThis.neptuneRemoteDesktop) {
globalThis.neptuneRemoteDesktop = new RemoteDesktopController();

neptuneRemoteDesktop.mdnsStartBroadcasting = service.advertise()
neptuneRemoteDesktop.mdnsStartBroadcasting = () => service.advertise()
neptuneRemoteDesktop.mdnsStopBroadcasting = () => service.end();
}
}
Expand Down

0 comments on commit 36a26a1

Please sign in to comment.