|
@ -614,7 +614,6 @@ import { |
|
|
} from "@/libs/endorserServer"; |
|
|
} from "@/libs/endorserServer"; |
|
|
import { Buffer } from "buffer/"; |
|
|
import { Buffer } from "buffer/"; |
|
|
import EntityIcon from "@/components/EntityIcon.vue"; |
|
|
import EntityIcon from "@/components/EntityIcon.vue"; |
|
|
import {Contact} from "@/db/tables/contacts"; |
|
|
|
|
|
|
|
|
|
|
|
interface IAccount { |
|
|
interface IAccount { |
|
|
did: string; |
|
|
did: string; |
|
@ -1384,14 +1383,18 @@ export default class AccountViewView extends Vue { |
|
|
group: "alert", |
|
|
group: "alert", |
|
|
type: "danger", |
|
|
type: "danger", |
|
|
title: "Error", |
|
|
title: "Error", |
|
|
text: "There was a problem deleting the image.", |
|
|
text: "There was a problem deleting the image. Contact support if you want it removed from the servers.", |
|
|
}, |
|
|
}, |
|
|
5000, |
|
|
-1, |
|
|
); |
|
|
); |
|
|
// keep the imageUrl in localStorage so the user can try again if they want |
|
|
// keep the imageUrl in localStorage so the user can try again if they want |
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
await db.open(); |
|
|
|
|
|
db.settings.update(MASTER_SETTINGS_KEY, { |
|
|
|
|
|
profileImageUrl: undefined, |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
this.profileImageUrl = undefined; |
|
|
this.profileImageUrl = undefined; |
|
|
} catch (error) { |
|
|
} catch (error) { |
|
|
console.error("Error deleting image:", error); |
|
|
console.error("Error deleting image:", error); |
|
@ -1399,6 +1402,11 @@ export default class AccountViewView extends Vue { |
|
|
if ((error as any).response.status === 404) { |
|
|
if ((error as any).response.status === 404) { |
|
|
console.log("The image was already deleted:", error); |
|
|
console.log("The image was already deleted:", error); |
|
|
|
|
|
|
|
|
|
|
|
await db.open(); |
|
|
|
|
|
db.settings.update(MASTER_SETTINGS_KEY, { |
|
|
|
|
|
profileImageUrl: undefined, |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
this.profileImageUrl = undefined; |
|
|
this.profileImageUrl = undefined; |
|
|
|
|
|
|
|
|
// it already doesn't exist so we won't say anything to the user |
|
|
// it already doesn't exist so we won't say anything to the user |
|
|