소스 검색

Check folder creation from other file manager apps

Signed-off-by: alperozturk <alper_ozturk@proton.me>
alperozturk 1 년 전
부모
커밋
ec3e9cfc0c
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      app/src/main/java/com/nextcloud/utils/fileNameValidator/FileNameValidator.kt

+ 0 - 1
app/src/main/java/com/nextcloud/utils/fileNameValidator/FileNameValidator.kt

@@ -46,7 +46,6 @@ object FileNameValidator {
             return context.getString(R.string.filename_empty)
         }
 
-        // TODO Native Files app can create forbidden file names we need to check it as well
         existedFileNames?.let {
             if (isFileNameAlreadyExist(filename, existedFileNames)) {
                 return context.getString(R.string.file_already_exists)