@@ -82,7 +83,7 @@ const inputCSS = 'block p-2.5 w-full text-lg text-gray-900 bg-gray-50 rounded-lg
if (app?.hasFaqSection) {
$('#additional-info').show().html(`
- See
frequently asked questions in case your question has already been answered.\nAnd make sure you are on the latest version (for example, check App Store).
+ See
frequently asked questions in case your question has already been answered.\nMake sure you are on the latest version (for example, check App Store) and try to restart your device (you would be surprised how often this is the solution).
`);
}
diff --git a/source/pages/rss-apps.xml.js b/source/pages/rss-apps.xml.js
index 394c05c5..323f1dee 100644
--- a/source/pages/rss-apps.xml.js
+++ b/source/pages/rss-apps.xml.js
@@ -1,7 +1,7 @@
import rss from '@astrojs/rss';
import {fetchApps} from '~/utils/apps.js';
-export const get = async context => {
+export const GET = async context => {
let items = await fetchApps();
items = items
diff --git a/source/pages/rss.xml.js b/source/pages/rss.xml.js
index 214f65bc..4ac8ee90 100644
--- a/source/pages/rss.xml.js
+++ b/source/pages/rss.xml.js
@@ -3,7 +3,7 @@ import {SITE} from '~/config.mjs';
import {fetchPosts} from '~/utils/posts.js';
import {fetchApps} from '~/utils/apps.js';
-export const get = async context => {
+export const GET = async context => {
const getApps = async () => {
const apps = await fetchApps();
return apps.map(app => ({
diff --git a/source/utils/apps.js b/source/utils/apps.js
index cc1c8025..4e399819 100644
--- a/source/utils/apps.js
+++ b/source/utils/apps.js
@@ -55,7 +55,7 @@ const normalizeApps = async app => {
url: data.redirectUrl ?? `/${slug}`,
isRedirect: data.redirectUrl !== undefined,
iconUrl: `/apps/${slug}/icon.png`,
- hasIOSAppIcon: (data.platforms.includes('iOS') || data.platforms.includes('watchOS')) && !data.platforms.includes('macOS'),
+ hasIOSAppIcon: data.forceiOSAppIcon || ((data.platforms.includes('iOS') || data.platforms.includes('watchOS')) && !data.platforms.includes('macOS')),
isNew: pubDate > date30DaysAgo,
mainLinks,
links,