diff --git a/ArchiSteamFarm/CryptoHelper.cs b/ArchiSteamFarm/CryptoHelper.cs index 711a73225..71c214a75 100644 --- a/ArchiSteamFarm/CryptoHelper.cs +++ b/ArchiSteamFarm/CryptoHelper.cs @@ -28,7 +28,7 @@ using System.Text; namespace ArchiSteamFarm { internal static class CryptoHelper { - private static byte[] EncryptionKey = Encoding.UTF8.GetBytes("ArchiSteamFarm"); + private static byte[] EncryptionKey = Encoding.UTF8.GetBytes(nameof(ArchiSteamFarm)); internal static string Decrypt(ECryptoMethod cryptoMethod, string encrypted) { if (string.IsNullOrEmpty(encrypted)) { diff --git a/appveyor.yml b/appveyor.yml index b1cb8365c..be7605da4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -58,11 +58,4 @@ deploy: on: branch: master configuration: Release - appveyor_repo_tag: true -notifications: -- provider: Webhook - url: https://webhooks.gitter.im/e/6982e3cd9dc9e57b1119 - method: POST - on_build_success: true - on_build_failure: true - on_build_status_changed: true \ No newline at end of file + appveyor_repo_tag: true \ No newline at end of file