Casting server did not bind to an automatically selected port.

This commit is contained in:
Koen J 2025-02-11 10:32:11 +01:00
parent 72f5b5fbc0
commit 62618224da

View file

@ -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();