We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19159ed commit 6a2f278Copy full SHA for 6a2f278
MewtocolNet/Mewtocol/MewtocolInterface.cs
@@ -733,8 +733,11 @@ public async Task<CommandResult> SendCommandAsync (string _msg) {
733
try {
734
735
queuedMessages++;
736
+
737
var response = await queue.Enqueue(() => SendSingleBlock(_msg));
- queuedMessages--;
738
739
+ if (queuedMessages > 0)
740
+ queuedMessages--;
741
742
if (response == null) {
743
return new CommandResult {
MewtocolNet/MewtocolNet.csproj
@@ -2,7 +2,7 @@
2
<PropertyGroup>
3
<TargetFramework>netstandard2.0</TargetFramework>
4
<PackageId>MewtocolNet</PackageId>
5
- <Version>0.5.8</Version>
+ <Version>0.6.0</Version>
6
<Authors>Felix Weiss</Authors>
7
<Company>Womed</Company>
8
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
0 commit comments