removed comment that was used for testing purposes and incremented version to 1.0.3 : added support for posts without post_hint value

This commit is contained in:
Louis Vallat 2020-08-26 23:54:15 +02:00
parent b8049ee7d7
commit 7300cbb533

View File

@ -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();
}
}