forked from jsnbuchanan/crowd-funder-for-time-pwa
fix file extension
This commit is contained in:
@@ -104,7 +104,7 @@ export default class GiftedPhoto extends Vue {
|
|||||||
|
|
||||||
async takeImage(/* payload: MouseEvent */) {
|
async takeImage(/* payload: MouseEvent */) {
|
||||||
const cameraComponent = this.$refs.camera as InstanceType<typeof Camera>;
|
const cameraComponent = this.$refs.camera as InstanceType<typeof Camera>;
|
||||||
this.blob = await cameraComponent?.snapshot();
|
this.blob = await cameraComponent?.snapshot(); // png is default; if that changes, change extension in formData.append
|
||||||
if (!this.blob) {
|
if (!this.blob) {
|
||||||
this.$notify(
|
this.$notify(
|
||||||
{
|
{
|
||||||
@@ -145,7 +145,7 @@ export default class GiftedPhoto extends Vue {
|
|||||||
this.uploading = false;
|
this.uploading = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
formData.append("image", this.blob, "snapshot.jpg");
|
formData.append("image", this.blob, "snapshot.png");
|
||||||
formData.append("claimType", "GiveAction");
|
formData.append("claimType", "GiveAction");
|
||||||
try {
|
try {
|
||||||
const response = await axios.post(
|
const response = await axios.post(
|
||||||
|
|||||||
Reference in New Issue
Block a user