From e5f8fd92130237abed770b03d766a3f2c4042e2e Mon Sep 17 00:00:00 2001 From: JustArchi Date: Sun, 2 Jul 2017 17:17:15 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/CryptoHelper.cs | 2 +- appveyor.yml | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) 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