diff --git a/apps/weather_status/js/weather-status.js b/apps/weather_status/js/weather-status.js
index 10a5b1641ba165bc6d50682c0bbe75494fa2742e..8fc545746a8e4c005cffe0c5224eb6d52dbb66bd 100644
Binary files a/apps/weather_status/js/weather-status.js and b/apps/weather_status/js/weather-status.js differ
diff --git a/apps/weather_status/js/weather-status.js.map b/apps/weather_status/js/weather-status.js.map
index 8039d4bc3a546efbc6cb3742b08149ec6d7c8f8c..fed4fa5441ce704bc75b4042d24621378a512cdf 100644
Binary files a/apps/weather_status/js/weather-status.js.map and b/apps/weather_status/js/weather-status.js.map differ
diff --git a/apps/weather_status/lib/Controller/WeatherStatusController.php b/apps/weather_status/lib/Controller/WeatherStatusController.php
index 0a0e3a47933a930bbb8dfa1d4c4b7765701e51fd..3813bbf9b41f1fe0f8af29613bb592b77229e0a7 100644
--- a/apps/weather_status/lib/Controller/WeatherStatusController.php
+++ b/apps/weather_status/lib/Controller/WeatherStatusController.php
@@ -46,7 +46,7 @@ class WeatherStatusController extends OCSController {
 								IRequest $request,
 								ILogger $logger,
 								WeatherStatusService $service,
-								string $userId) {
+								?string $userId) {
 		parent::__construct($appName, $request);
 		$this->userId = $userId;
 		$this->logger = $logger;
diff --git a/apps/weather_status/lib/Service/WeatherStatusService.php b/apps/weather_status/lib/Service/WeatherStatusService.php
index eb39bbe502c6655fd1eefc0ee029d1a8e35ba25b..2d9140c321826bab7e1e3228c64d3d1578856da5 100644
--- a/apps/weather_status/lib/Service/WeatherStatusService.php
+++ b/apps/weather_status/lib/Service/WeatherStatusService.php
@@ -105,7 +105,7 @@ class WeatherStatusService {
 								IUserManager $userManager,
 								IAppManager $appManager,
 								ICacheFactory $cacheFactory,
-								string $userId) {
+								?string $userId) {
 		$this->config = $config;
 		$this->userId = $userId;
 		$this->l10n = $l10n;
diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue
index ec106e2aaba5a50a0c0ba4ce85571042991f0858..e574bed1fb7a368dd5ba908b76c4bcd367129992 100644
--- a/apps/weather_status/src/App.vue
+++ b/apps/weather_status/src/App.vue
@@ -240,7 +240,11 @@ export default {
 					console.info('The weather status request was cancelled because the user navigates.')
 					return
 				}
-				showError(t('weather_status', 'There was an error getting the weather status information.'))
+				if (err.response && err.response.status === 401) {
+					showError(t('weather_status', 'You are not logged in.'))
+				} else {
+					showError(t('weather_status', 'There was an error getting the weather status information.'))
+				}
 				console.error(err)
 			}
 		},
@@ -309,8 +313,11 @@ export default {
 					this.loading = false
 				}
 			} catch (err) {
-				showError(t('weather_status', 'There was an error setting the location address.'))
-				console.debug(err)
+				if (err.response && err.response.status === 401) {
+					showError(t('weather_status', 'You are not logged in.'))
+				} else {
+					showError(t('weather_status', 'There was an error setting the location address.'))
+				}
 				this.loading = false
 			}
 		},
@@ -320,7 +327,11 @@ export default {
 				this.address = loc.address
 				this.startLoop()
 			} catch (err) {
-				showError(t('weather_status', 'There was an error setting the location.'))
+				if (err.response && err.response.status === 401) {
+					showError(t('weather_status', 'You are not logged in.'))
+				} else {
+					showError(t('weather_status', 'There was an error setting the location.'))
+				}
 				console.debug(err)
 			}
 		},
@@ -328,7 +339,11 @@ export default {
 			try {
 				await network.setMode(mode)
 			} catch (err) {
-				showError(t('weather_status', 'There was an error saving the mode.'))
+				if (err.response && err.response.status === 401) {
+					showError(t('weather_status', 'You are not logged in.'))
+				} else {
+					showError(t('weather_status', 'There was an error saving the mode.'))
+				}
 				console.debug(err)
 			}
 		},
@@ -345,7 +360,11 @@ export default {
 				this.mode = MODE_MANUAL_LOCATION
 				this.startLoop()
 			} catch (err) {
-				showError(t('weather_status', 'There was an error using personal address.'))
+				if (err.response && err.response.status === 401) {
+					showError(t('weather_status', 'You are not logged in.'))
+				} else {
+					showError(t('weather_status', 'There was an error using personal address.'))
+				}
 				console.debug(err)
 				this.loading = false
 			}