mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #24012 from nextcloud/backport/23981/stable20
[stable20] Fix js search in undefined ocs response
This commit is contained in:
commit
7032c880f0
3 changed files with 5 additions and 5 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -53,7 +53,7 @@ export default {
|
|||
async createShare({ path, permissions, shareType, shareWith, publicUpload, password, sendPasswordByTalk, expireDate, label }) {
|
||||
try {
|
||||
const request = await axios.post(shareUrl, { path, permissions, shareType, shareWith, publicUpload, password, sendPasswordByTalk, expireDate, label })
|
||||
if (!('ocs' in request.data)) {
|
||||
if (!request?.data?.ocs) {
|
||||
throw request
|
||||
}
|
||||
return new Share(request.data.ocs.data)
|
||||
|
|
@ -73,7 +73,7 @@ export default {
|
|||
async deleteShare(id) {
|
||||
try {
|
||||
const request = await axios.delete(shareUrl + `/${id}`)
|
||||
if (!('ocs' in request.data)) {
|
||||
if (!request?.data?.ocs) {
|
||||
throw request
|
||||
}
|
||||
return true
|
||||
|
|
@ -93,7 +93,7 @@ export default {
|
|||
async updateShare(id, properties) {
|
||||
try {
|
||||
const request = await axios.put(shareUrl + `/${id}`, properties, headers)
|
||||
if (!('ocs' in request.data)) {
|
||||
if (!request?.data?.ocs) {
|
||||
throw request
|
||||
}
|
||||
return true
|
||||
|
|
|
|||
Loading…
Reference in a new issue