mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-20 08:29:17 +01:00
Fix saved images paths
This commit is contained in:
parent
7ab9dc71fd
commit
f7baf124a6
@ -733,7 +733,7 @@ class MangaDetailsPresenter(
|
|||||||
val directory = File(
|
val directory = File(
|
||||||
Environment.getExternalStorageDirectory().absolutePath +
|
Environment.getExternalStorageDirectory().absolutePath +
|
||||||
File.separator + Environment.DIRECTORY_PICTURES +
|
File.separator + Environment.DIRECTORY_PICTURES +
|
||||||
File.separator + "Tachiyomi"
|
File.separator + preferences.context.getString(R.string.app_name)
|
||||||
)
|
)
|
||||||
saveCover(directory)
|
saveCover(directory)
|
||||||
true
|
true
|
||||||
|
@ -727,7 +727,7 @@ class ReaderPresenter(
|
|||||||
val destDir = File(
|
val destDir = File(
|
||||||
Environment.getExternalStorageDirectory().absolutePath +
|
Environment.getExternalStorageDirectory().absolutePath +
|
||||||
File.separator + Environment.DIRECTORY_PICTURES +
|
File.separator + Environment.DIRECTORY_PICTURES +
|
||||||
File.separator + "Tachiyomi"
|
File.separator + context.getString(R.string.app_name)
|
||||||
)
|
)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user