mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	Fix conditional check in createBackup function (#3006)
This commit is contained in:
		| @@ -147,7 +147,7 @@ export default defineComponent({ | ||||
|     async function createBackup() { | ||||
|       const { data } = await adminApi.backups.create(); | ||||
|  | ||||
|       if (!data?.error) { | ||||
|       if (data?.error === false) { | ||||
|         refreshBackups(); | ||||
|         alert.success(i18n.tc("settings.backup.backup-created")); | ||||
|       } else { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user