Hotfix 02082025@1420
All checks were successful
Build / Build (push) Successful in 1m30s

This commit is contained in:
Jacob Schmidt 2025-02-08 14:18:26 -06:00
parent c9c1a3556d
commit 3f01040e16
5 changed files with 1 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -584,11 +584,8 @@ namespace ArmaDragonflyClient
{ {
Task.Run(async () => Task.Run(async () =>
{ {
string channel = argsArr[0].Trim('"');
string message = argsArr[1];
string _uniqueID = $"{_id}_publish"; string _uniqueID = $"{_id}_publish";
await DragonflyDB.DragonflyPublishAsync(argsArr[0].Trim('"'), argsArr[1].Trim('"'), _uniqueID);
await DragonflyDB.DragonflyPublishAsync(channel, message, _uniqueID);
}); });
} }