Skip to content

Commit 8012c76

Browse files
committed
Catch SQLiteFullException during EPG sync
A SQLiteFullException is an indication that the DB is full or the disk on the device is full, as we can't tell which, we log the error and move on. Hopefully the user can see the log and fix the issue.
1 parent e708381 commit 8012c76

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/src/main/java/ie/macinnes/tvheadend/sync/EpgSyncTask.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import android.content.Context;
2424
import android.content.OperationApplicationException;
2525
import android.content.SharedPreferences;
26+
import android.database.sqlite.SQLiteFullException;
2627
import android.media.tv.TvContentRating;
2728
import android.media.tv.TvContract;
2829
import android.net.Uri;
@@ -407,7 +408,7 @@ public int compare(PendingChannelAddUpdate o1, PendingChannelAddUpdate o2) {
407408
try {
408409
results = mContext.getContentResolver().applyBatch(
409410
Constants.CONTENT_AUTHORITY, operations);
410-
} catch (RemoteException | OperationApplicationException e) {
411+
} catch (RemoteException | OperationApplicationException | SQLiteFullException e) {
411412
Log.e(TAG, "Failed to flush pending channel operations", e);
412413
return;
413414
}
@@ -667,7 +668,7 @@ private void flushPendingEventOps() {
667668
try {
668669
results = mContext.getContentResolver().applyBatch(
669670
Constants.CONTENT_AUTHORITY, operations);
670-
} catch (RemoteException | OperationApplicationException e) {
671+
} catch (RemoteException | OperationApplicationException | SQLiteFullException e) {
671672
Log.e(TAG, "Failed to flush pending event operations", e);
672673
return;
673674
}

0 commit comments

Comments
 (0)