Fix js search in undefined ocs response
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
This commit is contained in:
parent
0d52ba6239
commit
49676d909b
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 }) {
|
async createShare({ path, permissions, shareType, shareWith, publicUpload, password, sendPasswordByTalk, expireDate, label }) {
|
||||||
try {
|
try {
|
||||||
const request = await axios.post(shareUrl, { path, permissions, shareType, shareWith, publicUpload, password, sendPasswordByTalk, expireDate, label })
|
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
|
throw request
|
||||||
}
|
}
|
||||||
return new Share(request.data.ocs.data)
|
return new Share(request.data.ocs.data)
|
||||||
|
@ -73,7 +73,7 @@ export default {
|
||||||
async deleteShare(id) {
|
async deleteShare(id) {
|
||||||
try {
|
try {
|
||||||
const request = await axios.delete(shareUrl + `/${id}`)
|
const request = await axios.delete(shareUrl + `/${id}`)
|
||||||
if (!('ocs' in request.data)) {
|
if (!request?.data?.ocs) {
|
||||||
throw request
|
throw request
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
@ -93,7 +93,7 @@ export default {
|
||||||
async updateShare(id, properties) {
|
async updateShare(id, properties) {
|
||||||
try {
|
try {
|
||||||
const request = await axios.put(shareUrl + `/${id}`, properties, headers)
|
const request = await axios.put(shareUrl + `/${id}`, properties, headers)
|
||||||
if (!('ocs' in request.data)) {
|
if (!request?.data?.ocs) {
|
||||||
throw request
|
throw request
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Reference in New Issue