summaryrefslogtreecommitdiff
path: root/config/spotbugs
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-01-06 14:36:11 +0100
committerGitHub <noreply@github.com>2022-01-06 14:36:11 +0100
commit849bf4ad854973d39698613c3a356c09c87e687c (patch)
treefbd07d17fe5f26b8c91f9ce4ff8020046070431f /config/spotbugs
parent8252eb2183c6a478fdfd9317586c8800a24054ca (diff)
downloadAntennaPod-849bf4ad854973d39698613c3a356c09c87e687c.zip
Rewrite download request creation (#5530)
Android has a limit on the size of Intent parameters. When enqueuing a huge number of items, it just ignored the argument and did not call onNewIntent. We now load the list over in DownloadService.
Diffstat (limited to 'config/spotbugs')
-rw-r--r--config/spotbugs/exclude.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/spotbugs/exclude.xml b/config/spotbugs/exclude.xml
index 97a7481f5..d544e86d9 100644
--- a/config/spotbugs/exclude.xml
+++ b/config/spotbugs/exclude.xml
@@ -57,6 +57,10 @@
<Class name="de.danoeh.antennapod.core.service.download.DownloadService"/>
</Match>
<Match>
+ <Bug pattern="MS_CANNOT_BE_FINAL"/>
+ <Class name="de.danoeh.antennapod.core.service.download.DownloadService"/>
+ </Match>
+ <Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
<Class name="de.danoeh.antennapod.core.service.playback.PlaybackService"/>
</Match>