Compare commits

...

2 commits

Author SHA1 Message Date
Elijah R be119d4ea1 bump v 2024-04-02 19:23:53 -04:00
Elijah R a619f35842 fix bug that makes GetIP only work once per user 2024-04-02 19:23:32 -04:00
2 changed files with 3 additions and 1 deletions

View file

@ -213,6 +213,7 @@ public class CollabVMClient {
#endif
return;
}
if (msgArr.Length < 1) return;
this.NOPRecieve.Stop();
this.NOPRecieve.Interval = 10000;
@ -435,6 +436,7 @@ public class CollabVMClient {
var tsk = this.GotIPTasks.Find(x => x.username == msgArr[2]);
if (tsk == null) return;
tsk.IPTask.TrySetResult(msgArr[3]);
this.GotIPTasks.Remove(tsk);
break;
}
break;

View file

@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10</LangVersion>
<Version>2.4.1</Version>
<Version>2.4.2</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>CollabVMSharp</Title>
</PropertyGroup>