mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 14:45:47 +03:00
Merge pull request #774 from nextcloud/fix-instant-upload-video
Fix video upload path
This commit is contained in:
commit
0313183ea5
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