diff --git a/src/components/content-credentials/EXIFInfo.vue b/src/components/content-credentials/EXIFInfo.vue index e97d848..5f3b32f 100644 --- a/src/components/content-credentials/EXIFInfo.vue +++ b/src/components/content-credentials/EXIFInfo.vue @@ -81,8 +81,9 @@ const dateTime = computed(() => { try { if (exif) { const date = getSimpleValue("DateTimeOriginal"); + const dateOffset = getSimpleValue("OffsetTimeOriginal"); if (date) { - return dayjs(Date.parse(date)).format("lll"); + return dayjs(Date.parse(date + (dateOffset ? dateOffset : ""))).format("lll"); } } } catch (error) {}