Преглед изворни кода

bugfix: cli now actually sends a signup command instead of login

Denys пре 5 година
родитељ
комит
6b84b2a9c7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      cli/src/cmdman.cpp

+ 1 - 1
cli/src/cmdman.cpp

@@ -289,7 +289,7 @@ CmdMan::CmdRet CmdMan::cmdSignup(vector<string> args) {
     loginpossible = false;
     root["user"] = args[0];
     root["pass"] = args[1];
-    root["login"] = true;
+    root["login"] = false;
     root["cancel"] = false;
     retval.type = send;
   } else {