符号错误

This commit is contained in:
milimoe 2023-11-24 20:58:26 +08:00
parent 0a909f867b
commit b4e4b35df5
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E

View File

@ -30,7 +30,7 @@
public static string Delete_Rooms(params string[] roomids)
{
if (roomids.Length == 0)
if (roomids.Length != 0)
{
string where = string.Join("', '", roomids);
return $"{Command_Delete} {Command_From} {TableName} {Command_Where} {Column_RoomID} {Command_In} ('{where}')";