diff options
author | Mario <mario@mariovavti.com> | 2021-10-01 07:14:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-01 07:14:05 +0000 |
commit | 22dff49673d7732b846107c888259170332746cb (patch) | |
tree | b4f371f8347c71ce81f79df334bc6579e135c84e /Zotlabs/Module/Photos.php | |
parent | 6ed160e4fa05e880bc81720b626f2bdc68a20db8 (diff) | |
download | volse-hubzilla-22dff49673d7732b846107c888259170332746cb.tar.gz volse-hubzilla-22dff49673d7732b846107c888259170332746cb.tar.bz2 volse-hubzilla-22dff49673d7732b846107c888259170332746cb.zip |
improve file upload performance: start uploading next file only after the previous finished, make sure to not return when uploading via ajax
Diffstat (limited to 'Zotlabs/Module/Photos.php')
-rw-r--r-- | Zotlabs/Module/Photos.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 3aad70d18..57126df5f 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -171,6 +171,7 @@ class Photos extends \Zotlabs\Web\Controller { } goaway(z_root() . '/photos/' . \App::$data['channel']['channel_address']); + } if((argc() > 2) && (x($_REQUEST,'delete')) && ($_REQUEST['delete'] === t('Delete Photo'))) { @@ -501,6 +502,9 @@ class Photos extends \Zotlabs\Web\Controller { goaway(z_root() . '/photos/' . \App::$data['channel']['channel_address']); } + if(is_ajax()) + killme(); + goaway(z_root() . '/photos/' . \App::$data['channel']['channel_address'] . '/album/' . $r['data']['folder']); } |