Skip to content

Commit

Permalink
Merge pull request #43 from shankari/master
Browse files Browse the repository at this point in the history
Pass in a "null" title to match the changed method signature
  • Loading branch information
shankari authored Dec 1, 2021
2 parents c55050a + 6e84dc7 commit 3d67b44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-em-usercache"
version="1.1.3">
version="1.1.4">

<name>UserCache</name>
<description>Cache messages to and from the server so that we can retrieve
Expand Down
2 changes: 1 addition & 1 deletion src/android/BuiltinUserCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ public double getTsOfLastTransition() {
.contains("\"transition\":\"local.transition.stopped_moving\"")) {
// when we find stopped moving, we return, so this must be the first
// time we have found it
NotificationHelper.createNotification(cachedCtx, 5, cachedCtx.getString(R.string.had_to_look_in_all));
NotificationHelper.createNotification(cachedCtx, 5, null, cachedCtx.getString(R.string.had_to_look_in_all));
Log.w(cachedCtx, TAG, "regex did not find entry, had to search all");
double retVal = allCursor.getDouble(allCursor.getColumnIndex(KEY_WRITE_TS));
allCursor.close();
Expand Down

0 comments on commit 3d67b44

Please sign in to comment.