mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
Add logic responsible for starting web app
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
const { GObject } = imports.gi;
|
||||
const Misc = imports.clapper_src.misc;
|
||||
const { WebClient } = imports.clapper_src.webClient;
|
||||
|
||||
let { settings } = Misc;
|
||||
|
||||
var PlayerRemote = GObject.registerClass(
|
||||
class ClapperPlayerRemote extends GObject.Object
|
||||
{
|
||||
@@ -11,7 +8,7 @@ class ClapperPlayerRemote extends GObject.Object
|
||||
{
|
||||
super._init();
|
||||
|
||||
this.webclient = new WebClient(settings.get_int('webserver-port'));
|
||||
this.webclient = new WebClient();
|
||||
}
|
||||
|
||||
set_playlist(playlist)
|
||||
|
Reference in New Issue
Block a user