mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Fix IV always being forced
This commit is contained in:
parent
df2dc4e69c
commit
f7eda358e3
2 changed files with 3 additions and 4 deletions
|
@ -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) {
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue