Skip to content

Commit

Permalink
Update GoogleSheetsModule.cs
Browse files Browse the repository at this point in the history
Должно работать, наверное....
  • Loading branch information
user123456000 authored Dec 26, 2023
1 parent ad5aefa commit 0c05bc7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions handlers/GoogleSheetsModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private static void ReadEntries()
if (values.IndexOf(row) == 0) continue;
string nick = "";
if (row.Count > 3)
nick = row[3].ToString().Trim();
nick = row[4].ToString().Trim();
if (gridRow > values.Count - 1) { break; }
bool accepted = false;
try
Expand All @@ -114,11 +114,6 @@ private static void ReadEntries()
}
}
}
catch (Exception ex)
{
Program.logError(ex.Message + ex.StackTrace);
}

if (discordAccountsList.ContainsKey(nick))
{
gridRow += 1;
Expand Down

0 comments on commit 0c05bc7

Please sign in to comment.