From b066a7d9058c937c9b5cccfb633be50663c1fa4f Mon Sep 17 00:00:00 2001 From: Andrey Zavadskiy Date: Thu, 22 Dec 2016 15:26:31 +0300 Subject: [PATCH] Stop saving password --- osu.Game/OsuGameBase.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs index 0be9c3b1dd..212adb202c 100644 --- a/osu.Game/OsuGameBase.cs +++ b/osu.Game/OsuGameBase.cs @@ -118,7 +118,6 @@ namespace osu.Game if (Config != null && API != null) { Config.Set(OsuConfig.Username, Config.Get(OsuConfig.SaveUsername) ? API.Username : string.Empty); - Config.Set(OsuConfig.Password, Config.Get(OsuConfig.SavePassword) ? API.Password : string.Empty); Config.Set(OsuConfig.Token, Config.Get(OsuConfig.SavePassword) ? API.Token : string.Empty); Config.Save(); }