aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-02-19 14:14:12 -0800
committerScott Jackson <daneren2005@gmail.com>2014-02-19 14:14:12 -0800
commitafe49ebe2166b955ef72049b4e9e65bbc70918a2 (patch)
tree928f4ecbd37a454537c6061678533cdaca362964 /src
parent2a8382f537649405cb0d9618228e9cfe37e219d9 (diff)
downloaddsub-afe49ebe2166b955ef72049b4e9e65bbc70918a2.tar.gz
dsub-afe49ebe2166b955ef72049b4e9e65bbc70918a2.tar.bz2
dsub-afe49ebe2166b955ef72049b4e9e65bbc70918a2.zip
Write podcast listings to internal dir
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/util/FileUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/util/FileUtil.java b/src/github/daneren2005/dsub/util/FileUtil.java
index 8fa9796e..3c24143c 100644
--- a/src/github/daneren2005/dsub/util/FileUtil.java
+++ b/src/github/daneren2005/dsub/util/FileUtil.java
@@ -245,7 +245,7 @@ public class FileUtil {
return new File(dir.getPath() + "/" + fileSystemSafe(server));
}
public static File getPodcastDirectory(Context context) {
- File dir = new File(getSubsonicDirectory(), "podcasts");
+ File dir = new File(context.getCacheDir(), "podcasts");
ensureDirectoryExistsAndIsReadWritable(dir);
return dir;
}