Skip to content

Commit 42fe20e

Browse files
committed
fix(Core): use Imgur, TinyURL, Reddit by default
1 parent 7f5c077 commit 42fe20e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

SnapX.Core/Job/TaskSettings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ public class TaskSettings
3939
public AfterUploadTasks AfterUploadJob { get; set; } = AfterUploadTasks.CopyURLToClipboard;
4040

4141
public bool UseDefaultDestinations { get; set; } = true;
42-
public ImageDestination ImageDestination { get; set; } = ImageDestination.CustomImageUploader;
42+
public ImageDestination ImageDestination { get; set; } = ImageDestination.Imgur;
4343
public FileDestination ImageFileDestination { get; set; } = FileDestination.Dropbox;
4444
public TextDestination TextDestination { get; set; } = TextDestination.Pastebin;
4545
public FileDestination TextFileDestination { get; set; } = FileDestination.Dropbox;
4646
public FileDestination FileDestination { get; set; } = FileDestination.Dropbox;
47-
public UrlShortenerType URLShortenerDestination { get; set; } = UrlShortenerType.BITLY;
48-
public URLSharingServices URLSharingServiceDestination { get; set; } = URLSharingServices.Twitter;
47+
public UrlShortenerType URLShortenerDestination { get; set; } = UrlShortenerType.TINYURL;
48+
public URLSharingServices URLSharingServiceDestination { get; set; } = URLSharingServices.Reddit;
4949

5050
public bool OverrideFTP { get; set; } = false;
5151
public int FTPIndex { get; set; } = 0;

0 commit comments

Comments
 (0)