This commit is contained in:
Daniel 2024-08-11 19:23:16 -04:00
parent f4ea5916b8
commit d61ce79c29
2 changed files with 3 additions and 4 deletions

View file

@ -5,9 +5,7 @@ class LiveFeeder {
late Uri _wsUri;
late WebSocketChannel channel;
LiveFeeder();
void init() {
LiveFeeder() {
String socketUrl = 'ws://xenon:3050/ws';
Uri baseUri = Uri.base;
if (baseUri.scheme == 'http' || baseUri.scheme == 'https') {

View file

@ -24,7 +24,8 @@ message Call {
repeated int64 frequencies = 8;
repeated int32 patches = 9;
repeated int32 sources = 10;
bytes audio = 11;
optional int32 duration = 11;
bytes audio = 12;
}
message UserPopup {