From 37371df325d7915160ebfa409f10bc9cabd4c466 Mon Sep 17 00:00:00 2001 From: Pranshu Agrawal Date: Fri, 4 Nov 2022 22:16:04 +0530 Subject: [PATCH 1/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acc31019..f8370df9 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ The app is available in the google and apple stores. You can also test out the p ## Installation -To use databag, you will need a DNS name pointing to your node with a certificate. You can deloy a node manually, but you will have a much easier time using a container service. Containers for arm64 and amd64 are available [here](https://hub.docker.com/r/balzack/databag/tags). +To use databag, you will need a DNS name pointing to your node with a certificate. You can deploy a node manually, but you will have a much easier time using a container service. Containers for arm64 and amd64 are available [here](https://hub.docker.com/r/balzack/databag/tags). Instruction for installing without a container on a Raspberry Pi Zero are [here](/doc/pizero.md). From 0cadedebe416a1fbdd2216869fdfb2bf5d281269 Mon Sep 17 00:00:00 2001 From: balzack Date: Wed, 9 Nov 2022 21:12:37 -0800 Subject: [PATCH 2/2] fixing mobile global push notification --- app/mobile/src/dashboard/useDashboard.hook.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/mobile/src/dashboard/useDashboard.hook.js b/app/mobile/src/dashboard/useDashboard.hook.js index 1c8b3a83..37628826 100644 --- a/app/mobile/src/dashboard/useDashboard.hook.js +++ b/app/mobile/src/dashboard/useDashboard.hook.js @@ -55,8 +55,8 @@ export function useDashboard(config, server, token) { }; useEffect(() => { - const { keyType, accountStorage, domain, enableImage, enableAudio, enableVideo } = config; - updateState({ keyType, storage: accountStorage.toString(), domain, enableImage, enableAudio, enableVideo }); + const { keyType, accountStorage, domain, enableImage, enableAudio, enableVideo, pushSupported } = config; + updateState({ keyType, storage: accountStorage.toString(), domain, enableImage, enableAudio, enableVideo, pushSupported }); }, [config]); useEffect(() => {