mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 23:03:00 -04:00
Don't load item if it doesn't have it status set
This commit is contained in:
parent
2554f674de
commit
4f10574065
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ OC.Share={
|
|||
},
|
||||
loadItem:function(itemType, item) {
|
||||
var data = '';
|
||||
// if (typeof OC.Share.statuses[item] !== 'undefined') {
|
||||
if (typeof OC.Share.statuses[item] !== 'undefined') {
|
||||
$.ajax({type: 'GET', url: OC.filePath('core', 'ajax', 'share.php'), data: { fetch: 'getItem', itemType: itemType, item: item }, async: false, success: function(result) {
|
||||
if (result && result.status === 'success') {
|
||||
data = result.data;
|
||||
|
|
@ -38,7 +38,7 @@ OC.Share={
|
|||
data = false;
|
||||
}
|
||||
}});
|
||||
// }
|
||||
}
|
||||
return data;
|
||||
},
|
||||
share:function(itemType, item, shareType, shareWith, permissions, callback) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue