Skip to content

Commit

Permalink
Fixed not connecting and constantly updating
Browse files Browse the repository at this point in the history
  • Loading branch information
VLTNOgithub committed Feb 14, 2024
1 parent fc168fa commit 76dd4e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Controllers/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public Task ConnectAsync()

var host = new Uri(Config.host);

if (Config.password == null)
if (Config.password == null || Config.password == "")
{
return OBS.ConnectAsync(host);
}
Expand Down Expand Up @@ -124,4 +124,4 @@ public void Dispose()
GC.SuppressFinalize(this);
}
}
}
}

0 comments on commit 76dd4e8

Please sign in to comment.