Skip to content

Commit

Permalink
Update lib to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rubengees committed Oct 10, 2015
1 parent a2d2d53 commit 99a4d3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
compile('com.github.rubengees:introduction:1.1.2@aar') {
transitive = true;
}
compile('com.github.proxer:ProxerLibAndroid:1.0.2@aar') {
compile('com.github.proxer:ProxerLibAndroid:1.0.3@aar') {
transitive = true
}
}
6 changes: 2 additions & 4 deletions app/src/main/java/com/proxerme/app/service/NewsService.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
import android.content.Context;
import android.content.Intent;

import com.afollestad.bridge.BridgeException;
import com.proxerme.app.manager.NewsManager;
import com.proxerme.app.manager.NotificationManager;
import com.proxerme.library.connection.ProxerConnection;
import com.proxerme.library.connection.ProxerException;
import com.proxerme.library.entity.News;

import org.json.JSONException;

import java.util.List;

/**
Expand Down Expand Up @@ -60,7 +58,7 @@ private void handleActionLoadNews() {
manager.setNewNews(offset);
NotificationManager.showNewsNotification(this, news, offset);
}
} catch (BridgeException | JSONException e) {
} catch (ProxerException e) {
//ignore
}
}
Expand Down

0 comments on commit 99a4d3e

Please sign in to comment.