зеркало из https://github.com/nextcloud/android.git
Add check to share
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
Родитель
ff32c0a8c8
Коммит
3889dab1f7
|
@ -296,6 +296,12 @@ public class ReceiveExternalFilesActivity extends FileActivity
|
|||
@Override
|
||||
public void selectFile(OCFile file) {
|
||||
if (file.isFolder()) {
|
||||
String filenameErrorMessage = FileNameValidator.INSTANCE.checkFileName(file.getFileName(), getCapabilities(), this, null);
|
||||
if (filenameErrorMessage != null) {
|
||||
DisplayUtils.showSnackMessage(this, filenameErrorMessage);
|
||||
return;
|
||||
}
|
||||
|
||||
if (file.isEncrypted() &&
|
||||
!FileOperationsHelper.isEndToEndEncryptionSetup(this, getUser().orElseThrow(IllegalAccessError::new))) {
|
||||
DisplayUtils.showSnackMessage(this, R.string.e2e_not_yet_setup);
|
||||
|
|
Загрузка…
Ссылка в новой задаче