File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ const MEL_BOARD_INTEGRATION_START_DATE = '2024-05-12';
21
21
const FAILED_RENDER_MIN_RETRY_MINUTES = 15 ;
22
22
const FAILED_RENDER_MAX_RETRY_MINUTES = 60 ;
23
23
24
+ // TODO: Remove this at some point
25
+ const MAP_ID_ADVANCED_FAITH_PLATE = '36' ;
26
+
24
27
installLogger ( 'board' ) ;
25
28
26
29
addEventListener ( 'unhandledrejection' , ( ev ) => {
@@ -51,7 +54,7 @@ const checkChangelogUpdates = async () => {
51
54
52
55
const checkMelChangelogUpdates = async ( ) => {
53
56
const changelog = await getMelChangelog ( {
54
- endRank : 1 ,
57
+ endRank : 3 ,
55
58
maxDaysAgo : 1 ,
56
59
banned : 0 ,
57
60
pending : 0 ,
@@ -66,6 +69,10 @@ const checkMelChangelogUpdates = async () => {
66
69
continue ;
67
70
}
68
71
72
+ if ( entry . mapid === MAP_ID_ADVANCED_FAITH_PLATE ) {
73
+ continue ;
74
+ }
75
+
69
76
await insertVideo ( BoardSource . Mel , entry ) ;
70
77
}
71
78
} ;
You can’t perform that action at this time.
0 commit comments