Fixed handling new IP addresses

This commit is contained in:
M66B 2019-04-16 19:43:52 +02:00
parent 43877cc106
commit b5bc3ccf19
1 changed files with 1 additions and 1 deletions

View File

@ -812,7 +812,7 @@ public class DatabaseHelper extends SQLiteOpenHelper {
db.setTransactionSuccessful();
return (rows == 0);
return (rows > 0);
} finally {
db.endTransaction();
}