fixed #1180: Removed imgrush

This commit is contained in:
Jaex 2015-12-07 20:18:24 +02:00
parent 673324e66e
commit 9b101475bf
3 changed files with 1 additions and 5 deletions

View file

@ -23,6 +23,7 @@
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using System;
namespace ShareX.ScreenCaptureLib

View file

@ -118,8 +118,6 @@ public enum FileDestination
Jira,
[Description("Lambda")]
Lambda,
[Description("Imgrush")]
Imgrush,
[Description("VideoBin")]
VideoBin,
[Description("Pomf")]

View file

@ -1090,9 +1090,6 @@ public UploadResult UploadFile(Stream stream, string fileName)
case FileDestination.Lambda:
fileUploader = new Lambda(Program.UploadersConfig.LambdaSettings);
break;
case FileDestination.Imgrush:
fileUploader = new MediaCrushUploader("https://imgrush.com");
break;
case FileDestination.VideoBin:
fileUploader = new VideoBin();
break;