mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
Fix leftover debug value.
This commit is contained in:
parent
a0881ca8c8
commit
be2dbaffb1
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ public class SyncthingService extends Service {
|
||||||
Log.e(TAG, "Failed to execute syncthing binary or read output", e);
|
Log.e(TAG, "Failed to execute syncthing binary or read output", e);
|
||||||
}
|
}
|
||||||
finally {
|
finally {
|
||||||
if (ret != 1) {
|
if (ret != 0) {
|
||||||
stopSelf();
|
stopSelf();
|
||||||
// Include the log for Play Store crash reports.
|
// Include the log for Play Store crash reports.
|
||||||
throw new NativeExecutionException("Syncthing binary returned error code " +
|
throw new NativeExecutionException("Syncthing binary returned error code " +
|
||||||
|
|
Loading…
Reference in a new issue