Fix IV always being forced

This commit is contained in:
dangered wolf 2024-05-03 15:42:05 -04:00
parent df2dc4e69c
commit f7eda358e3
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 3 additions and 4 deletions

View file

@ -119,7 +119,8 @@ export const handleStatus = async (
status.quote ||
status.translation ||
status.community_note ||
flags?.forceInstantView);
flags?.forceInstantView ||
(thread?.thread?.length ?? 0) > 1);
/* Force enable IV for archivers */
if (flags?.archive) {

View file

@ -57,11 +57,9 @@ export const statusRequest = async (c: Context) => {
console.log('Forced instant view request');
flags.forceInstantView = true;
} else if (
experimentCheck(Experiment.IV_FORCE_THREAD_UNROLL, userAgent.includes('Telegram')) ||
Constants.INSTANT_VIEW_THREADS_DOMAINS.includes(url.hostname)
experimentCheck(Experiment.IV_FORCE_THREAD_UNROLL, userAgent.includes('Telegram'))
) {
console.log('Forced unroll instant view');
flags.forceInstantView = true;
flags.instantViewUnrollThreads = true;
} else if (Constants.GALLERY_DOMAINS.includes(url.hostname)) {
console.log('Gallery embed request');