From b577f9e1d9deac3b1b5acac36c775487e0953cb4 Mon Sep 17 00:00:00 2001 From: JKlingen Date: Fri, 3 Apr 2015 09:42:41 +0200 Subject: [PATCH] BUG-1578 by default, no longer pass title and filename to imgur [skip ci] --- GreenshotImgurPlugin/ImgurConfiguration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GreenshotImgurPlugin/ImgurConfiguration.cs b/GreenshotImgurPlugin/ImgurConfiguration.cs index 40cb7528c..9fdb3950c 100644 --- a/GreenshotImgurPlugin/ImgurConfiguration.cs +++ b/GreenshotImgurPlugin/ImgurConfiguration.cs @@ -47,9 +47,9 @@ namespace GreenshotImgurPlugin { public string ImgurToken; [IniProperty("ImgurTokenSecret", Description = "The Imgur token secret", Encrypted=true, ExcludeIfNull=true)] public string ImgurTokenSecret; - [IniProperty("AddTitle", Description = "Is the title passed on to Imgur", DefaultValue = "True")] + [IniProperty("AddTitle", Description = "Is the title passed on to Imgur", DefaultValue = "False")] public bool AddTitle; - [IniProperty("AddFilename", Description = "Is the filename passed on to Imgur", DefaultValue = "True")] + [IniProperty("AddFilename", Description = "Is the filename passed on to Imgur", DefaultValue = "False")] public bool AddFilename; [IniProperty("FilenamePattern", Description = "Filename for the Imgur upload", DefaultValue = "${capturetime:d\"yyyyMMdd-HHmm\"}")] public string FilenamePattern;