diff --git a/README.md b/README.md index a0205422..0b0226d1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
A Dropbox-like file manager that let you manage your data anywhere it is located:
- FTP • SFTP • WebDAV • Git • S3
+ FTP • SFTP • WebDAV • Git • S3 • Minio
Dropbox • Google Drive
diff --git a/client/pages/connectpage/form.js b/client/pages/connectpage/form.js
index 9f4f741e..658290d7 100644
--- a/client/pages/connectpage/form.js
+++ b/client/pages/connectpage/form.js
@@ -67,7 +67,7 @@ export class Form extends React.Component {
if(credentials['webdav'] && credentials['webdav']['path']){
this.setState({advanced_webdav: true});
}
- if(credentials['s3'] && credentials['s3']['path']){
+ if(credentials['s3'] && (credentials['s3']['path'] || credentials['s3']['endpoint'])){
this.setState({advanced_s3: true});
}
if(credentials['git'] && (
@@ -304,6 +304,9 @@ export class Form extends React.Component {