Skip to content

Commit d0038e7

Browse files
committed
Remove misleading message on authentication failure
failure to fetch WU token is a problem with logging into the account itself, not a problem with the beta programme.
1 parent f502216 commit d0038e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MCLauncher/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ private void InvokeDownload(Version v) {
338338
Debug.WriteLine("Authentication complete");
339339
} catch (WUTokenHelper.WUTokenException e) {
340340
Debug.WriteLine("Authentication failed:\n" + e.ToString());
341-
MessageBox.Show("Failed to authenticate because: " + e.Message + "\nPlease make sure your account is subscribed to the beta programme.\n\n" + e.ToString(), "Authentication failed");
341+
MessageBox.Show("Failed to authenticate because: " + e.Message + "\n\n" + e.ToString(), "Authentication failed");
342342
v.StateChangeInfo = null;
343343
return;
344344
} catch (Exception e) {

0 commit comments

Comments
 (0)