diff --git a/xtrn/wttr.in/readme.txt b/xtrn/wttr.in/readme.txt
index d4677ad75e8828460ebdb8beddfd06b6444013ac..df3060b76898cc12d56ff2347c711cc64fdd6ea7 100644
--- a/xtrn/wttr.in/readme.txt
+++ b/xtrn/wttr.in/readme.txt
@@ -45,7 +45,7 @@ Contents
 
 	See https://wttr.in/:help for details on query parameters.
 
-	By default, this script will query https://wttr.in/?AFn and will cache
+	By default, this script will query https://wttr.in/?1AFn and will cache
 	non-error responses for 3600 seconds (one hour). If the user's IP address
 	is available, wttr.in will use it for geolocation. If the user's IP
 	address is not available, your BBS' external IP address will be used for
@@ -60,7 +60,7 @@ Contents
 		[wttr.in]
 		base_url = https://wttr.in/
 		units = m
-		view = AFn
+		view = 1AFn
 		cache_ttl = 3600
 
 	All of the above settings are optional and any may be omitted. Substitute
diff --git a/xtrn/wttr.in/wttr-lib.js b/xtrn/wttr.in/wttr-lib.js
index a8bbdc0018e98ac8dda59e413358b5c1c2f3557f..572a284b86141f620debeb642720333f302faf9b 100644
--- a/xtrn/wttr.in/wttr-lib.js
+++ b/xtrn/wttr.in/wttr-lib.js
@@ -26,7 +26,7 @@ function loadSettings(argv) {
 	var settings = load({}, 'modopts.js', 'wttr.in') || {};
 	if (settings.base_url === undefined) settings.base_url = 'https://wttr.in/';
 	if (settings.units === undefined) settings.units = '';
-	if (settings.view === undefined) settings.view = 'AFn';
+	if (settings.view === undefined) settings.view = '1AFn';
 	if (settings.cache_ttl === undefined) settings.cache_ttl = 3600;
 	if (settings.fallback_location === undefined) settings.fallback_location = '';
 	settings = parseArgs(settings, argv);