Make remote app binary name consistent with app ID

This commit is contained in:
Rafostar
2020-12-16 15:33:39 +01:00
parent 57ceb17100
commit 254d1aa9db
3 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
clapper_apps = [ '', 'Remote' ]
clapper_apps = [ '', '.Remote' ]
foreach id_postfix : clapper_apps
bin_conf = configuration_data()

View File

@@ -25,7 +25,7 @@ class ClapperWebApp extends Gio.SubprocessLauncher
if(this.remoteApp)
return;
this.remoteApp = this.spawnv([Misc.appId + 'Remote']);
this.remoteApp = this.spawnv([Misc.appId + '.Remote']);
this.remoteApp.wait_async(null, this._onRemoteClosed.bind(this));
debug('remote app started');