Skip to content

Commit 91b616e

Browse files
committed
Fix destination path handling in RootProviderProxy
- Update `FileUtils.copyToIconifyDir` to use only the filename from `resultPath` instead of the full path.
1 parent 5f39b76 commit 91b616e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/com/drdisagree/iconify/services/providers/RootProviderProxy.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class RootProviderProxy : Service() {
7474

7575
val isSuccess = FileUtils.copyToIconifyDir(
7676
tempFile,
77-
resultPath
77+
File(resultPath).name
7878
)
7979

8080
tempFile.delete()

0 commit comments

Comments
 (0)