Skip to content

Commit

Permalink
Updated OSCQuery to newest version
Browse files Browse the repository at this point in the history
  • Loading branch information
PaciStardust committed Aug 11, 2023
1 parent 729c537 commit 6086a43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Binary file modified OscMultitool/Resources/OscQuery/vrc-oscquery-lib.dll
Binary file not shown.
8 changes: 6 additions & 2 deletions OscMultitool/Services/OscControl/OscListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,12 @@ private async Task AddServiceProfile(OSCQueryServiceProfile profile)
return;
}

_serviceProfiles[connectionInfo.name.ToLower()] = connectionInfo;
Logger.Info($"Adding service profile \"{profile.name}\"");
var lowerName = connectionInfo.name.ToLower();
if (!_serviceProfiles.ContainsKey(lowerName))
{
_serviceProfiles[connectionInfo.name.ToLower()] = connectionInfo;
Logger.Info($"Adding service profile \"{profile.name}\"");
}
}
#endregion
}
Expand Down

0 comments on commit 6086a43

Please sign in to comment.