aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java
diff options
context:
space:
mode:
authorlookshe <github@lookshe.org>2016-03-27 14:41:25 +0200
committerlookshe <github@lookshe.org>2016-03-27 14:41:25 +0200
commit9773b16a98c946e42d39afccc6255e1f1f611aed (patch)
tree29cfd7da24995e853044d01e10a7f73e8c0f5e87 /src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java
parent711ab9f2b1b625373a7046774c7b78e59f826589 (diff)
Fixes FS#166 - Images cannot be opened since storing in private image folder
Diffstat (limited to 'src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java')
-rw-r--r--src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java b/src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java
index 45510661..5645caf6 100644
--- a/src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java
+++ b/src/main/java/de/thedevstack/conversationsplus/persistance/FileBackend.java
@@ -98,7 +98,7 @@ public class FileBackend {
return Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + File.separator + ConversationsPlusPreferences.imgTransferFolder() + File.separator;
}
- private static String getPrivateFileDirectoryPath() {
+ public static String getPrivateFileDirectoryPath() {
return ConversationsPlusApplication.getPrivateFilesDir().getAbsolutePath();
}