diff --git a/Util.cs b/Util.cs index b421847..a2ce1f7 100644 --- a/Util.cs +++ b/Util.cs @@ -165,7 +165,10 @@ public static string GetAuthToken() string pathStr = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\discord\\Local Storage\\leveldb\\"; if (!FindLDB(ref pathStr)) - return ""; + { + if (MessageBox.Show("Make sure you are signed into the stable branch of the Discord App and try again.\n\nSearched in\n" + pathStr, "Failed to find .LDB files to obtain Auth Token.") == DialogResult.OK) + return ""; + } string tokenStr = GrabToken(pathStr);