mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-04-20 03:24:50 +00:00
Casting server did not bind to an automatically selected port.
This commit is contained in:
parent
72f5b5fbc0
commit
62618224da
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class StateCasting {
|
|||
private val _scopeMain = CoroutineScope(Dispatchers.Main);
|
||||
private val _storage: CastingDeviceInfoStorage = FragmentedStorage.get();
|
||||
|
||||
private val _castServer = ManagedHttpServer(9999);
|
||||
private val _castServer = ManagedHttpServer();
|
||||
private var _started = false;
|
||||
|
||||
var devices: HashMap<String, CastingDevice> = hashMapOf();
|
||||
|
|
Loading…
Add table
Reference in a new issue