From 7300cbb53354da6bbe58a380396908bece7406b2 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Wed, 26 Aug 2020 23:54:15 +0200 Subject: [PATCH] removed comment that was used for testing purposes and incremented version to 1.0.3 : added support for posts without post_hint value --- src/main/java/xyz.vallat.louis/RedditReposterBot.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/xyz.vallat.louis/RedditReposterBot.java b/src/main/java/xyz.vallat.louis/RedditReposterBot.java index aa97485..c8dafc8 100755 --- a/src/main/java/xyz.vallat.louis/RedditReposterBot.java +++ b/src/main/java/xyz.vallat.louis/RedditReposterBot.java @@ -34,7 +34,7 @@ public class RedditReposterBot { /** * Version of the application. */ - private static final String VERSION = "1.0.1"; + private static final String VERSION = "1.0.3"; /** * Launch the Hypervisor. @@ -62,7 +62,7 @@ public class RedditReposterBot { System.out.println("[*] App version " + VERSION); Hypervisor master = Hypervisor.getSingleton(); - //master.addSocialMedia(new TwitterBot()); + master.addSocialMedia(new TwitterBot()); master.run(); } }