We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c0fc3 commit 614f6bfCopy full SHA for 614f6bf
pages/registry/index.html
@@ -1192,6 +1192,7 @@ <h3 style="margin: 0;">Raw Manifest:</h3>
1192
'isPinned': 0,
1193
'isOfficial': 1,
1194
'others': 2,
1195
+ 'archived': 3,
1196
}
1197
const isLucien = searchParams.get('source') === 'lucien'
1198
const sourceProtocol = searchParams.get('protocol') || 'lucien'
@@ -1206,6 +1207,10 @@ <h3 style="margin: 0;">Raw Manifest:</h3>
1206
1207
function serverSortRule(serverA, serverB) {
1208
1209
function determineServerType(server) {
1210
+ // Archived servers get lowest priority regardless of other factors
1211
+ if (server.is_archived) {
1212
+ return 'archived';
1213
+ }
1214
if (defaultSpecifiedServers.includes(server.name)) {
1215
return 'isPinned';
1216
0 commit comments