You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Been having a problem with the delete callback in that it appears the filename being deleted is not being passed. I have achieved the desired results by changing line 840 from:
Been having a problem with the delete callback in that it appears the filename being deleted is not being passed. I have achieved the desired results by changing line 840 from:
if(s.deleteCallback) s.deleteCallback.call(this, data, pd);
To
if(s.deleteCallback) s.deleteCallback.call(this, fileArray[0], pd);
I've not researched this thoroughly so this change might work for you, it might not. It seems to work for me. So far.
The text was updated successfully, but these errors were encountered: