This commit is contained in:
JustArchi 2018-02-05 01:29:04 +01:00
parent 7b18f52fec
commit 426002aaa2

View file

@ -110,6 +110,9 @@ namespace ArchiSteamFarm {
);
return Encoding.UTF8.GetString(decryptedData);
} catch (PlatformNotSupportedException e) {
ASF.ArchiLogger.LogGenericWarningException(e);
return null;
} catch (Exception e) {
ASF.ArchiLogger.LogGenericException(e);
return null;
@ -151,6 +154,9 @@ namespace ArchiSteamFarm {
);
return Convert.ToBase64String(encryptedData);
} catch (PlatformNotSupportedException e) {
ASF.ArchiLogger.LogGenericWarningException(e);
return null;
} catch (Exception e) {
ASF.ArchiLogger.LogGenericException(e);
return null;