Skip to content
This repository has been archived by the owner on Jul 26, 2019. It is now read-only.

v1.0.3: Fixing JSONException when BotBlock.org has no failure object

Compare
Choose a tag to compare
@Andre601 Andre601 released this 23 Jun 14:46
· 22 commits to master since this release
6fb93e9

There was an uncatched JSONException when BotBlock.org doesn't return a failure object in its JSON, causing things like Schedulers to break silently (No errors shown).
This should be fixed now.

Yes I skiped v1.0.2

Installation

Gradle

repositories{
    maven { url = 'https://dl.bintray.com/andre601/maven' }
}

dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '1.0.3'
}

Maven

<repositories>
  <repository>
    <id>jcenter</id>
    <url>https://dl.bintray.com/andre601/maven</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>1.0.3</version>
  </dependency>
</dependencies>