Merge pull request #15439 from nextcloud/backport/15432/stable16
[stable16] Fix public upload by also load the semaphore method
This commit is contained in:
commit
3102633260
|
@ -32,6 +32,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
// needed on public share page to properly register this
|
||||
if (!OCA.Files) {
|
||||
OCA.Files = {};
|
||||
}
|
||||
OCA.Files.Semaphore = Semaphore;
|
||||
|
||||
})();
|
||||
|
|
|
@ -412,6 +412,7 @@ class ShareController extends AuthPublicShareController {
|
|||
}
|
||||
|
||||
// Load files we need
|
||||
\OCP\Util::addScript('files', 'semaphore');
|
||||
\OCP\Util::addScript('files', 'file-upload');
|
||||
\OCP\Util::addStyle('files_sharing', 'publicView');
|
||||
\OCP\Util::addScript('files_sharing', 'public');
|
||||
|
|
Loading…
Reference in New Issue