diff --git a/core/libs/transdroid-connect.jar b/core/libs/transdroid-connect.jar index 13fd70e4..09d4737c 100644 Binary files a/core/libs/transdroid-connect.jar and b/core/libs/transdroid-connect.jar differ diff --git a/core/res/values/strings.xml b/core/res/values/strings.xml index 4231864f..a16fb63c 100644 --- a/core/res/values/strings.xml +++ b/core/res/values/strings.xml @@ -102,15 +102,15 @@ Update New torrent added - %1$s new torrents added + %1$s new torrents added Torrent is finished - %1$s torrents are finished + %1$s torrents are finished %1$s added, %2$s finished torrent - %1$s added, %2$s finished torrents + %1$s added, %2$s finished torrents %1$s and others @@ -168,7 +168,7 @@ New RSS feed torrent available - %1$s new RSS feed torrents + %1$s new RSS feed torrents New torrents for %1$s diff --git a/core/src/org/transdroid/core/service/ServerCheckerService.java b/core/src/org/transdroid/core/service/ServerCheckerService.java index a04a528a..b237a82f 100644 --- a/core/src/org/transdroid/core/service/ServerCheckerService.java +++ b/core/src/org/transdroid/core/service/ServerCheckerService.java @@ -103,7 +103,7 @@ public class ServerCheckerService extends IntentService { newTorrents.add(torrent); continue; } - if (server.shouldAlarmOnFinishedDownload() && torrent.getPartDone() == 1F && !wasDone) + if (server.shouldAlarmOnFinishedDownload() && torrent.getPartDone() == 1F && wasDone != null && !wasDone) // This torrent is now done, but wasn't before doneTorrents.add(torrent); } diff --git a/lib/src/org/transdroid/daemon/util/Collections2.java b/lib/src/org/transdroid/daemon/util/Collections2.java index 97286575..e4a2083d 100644 --- a/lib/src/org/transdroid/daemon/util/Collections2.java +++ b/lib/src/org/transdroid/daemon/util/Collections2.java @@ -15,7 +15,7 @@ public class Collections2 { String result = ""; Iterator it = iterable.iterator(); while (it.hasNext()) { - result = (first ? "" : separator) + it.next().toString(); + result += (first ? "" : separator) + it.next().toString(); first = false; } return result;