mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 22:55:46 +03:00
Fix video upload path
This commit is contained in:
parent
e21c8dcff9
commit
0258811e85
1 changed files with 1 additions and 1 deletions
|
@ -200,7 +200,7 @@ public class FileStorageUtils {
|
|||
if (com.owncloud.android.db.PreferenceManager.instantVideoUploadPathUseSubfolders(context)) {
|
||||
subPath = getSubpathFromDate(dateTaken);
|
||||
}
|
||||
return uploadVideoPath + subPath + (fileName == null ? "" : fileName);
|
||||
return uploadVideoPath + OCFile.PATH_SEPARATOR + subPath + (fileName == null ? "" : fileName);
|
||||
}
|
||||
|
||||
public static String getParentPath(String remotePath) {
|
||||
|
|
Loading…
Reference in a new issue