From dc9f774c06106fb9fde93b498ab6b7fc16626d6c Mon Sep 17 00:00:00 2001
From: MarcZierle <online@marczierle.com>
Date: Fri, 17 Jun 2022 09:17:14 +0200
Subject: [PATCH] fix fetching photo groups in camera capture (bc of using tags
 now too)

---
 src/views/CameraCapture.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/CameraCapture.vue b/src/views/CameraCapture.vue
index 674b816..0333869 100644
--- a/src/views/CameraCapture.vue
+++ b/src/views/CameraCapture.vue
@@ -209,7 +209,7 @@ export default {
 
 			addNewPhotoGroup(this.new_group_name, today).then((response) => {
 				this.message.success('Added group '+this.new_group_name)
-				this.fetchPhotoGroups()
+				this.fetchPhotoGroupsAndTags()
 				this.showAddGroupModal = false
 				this.selected_group = response.data.id
 			}).catch((error)=>{