This commit is contained in:
dangered wolf 2024-04-30 01:03:39 -04:00
parent ce1dda2b8a
commit b1c2b65337
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
4 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@
"ivAboutAuthor": "About author",
"ivProfileFollowing": "{numFollowing, plural, one {Following} other {Following}}",
"ivProfileFollowers": "{numFollowers, plural, one {Follower} other {Followers}}",
"ivProfileStatuses": "{numPosts, plural, one {Post} other {Posts}}",
"ivProfileStatuses": "{numStatuses, plural, one {Post} other {Posts}}",
"ivProfilePictureAlt": "{author}'s profile picture",
"ivFallbackText": "If you can see this, your browser is doing something weird with your user agent.",

View file

@ -217,7 +217,7 @@ export const handleStatus = async (
}
ivbody = instructions.text || '';
} catch (e) {
console.log('Error rendering Instant View', e);
console.log('Error rendering Instant View', e, (e as Error)?.stack);
useIV = false;
}
}

View file

@ -42,7 +42,7 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = {
[Experiment.IV_FORCE_THREAD_UNROLL]: {
name: 'IV force thread unroll',
description: 'Force thread unroll for Telegram Instant View',
percentage: 0.25
percentage: 1
}
};

View file

@ -276,7 +276,7 @@ const generateStatus = (
let text = paragraphify(sanitizeText(status.text), isQuote);
text = htmlifyLinks(text);
text = htmlifyHashtags(text);
text = populateUserLinks(status, text);
text = populateUserLinks(text);
const translatedText = getTranslatedText(status as APITwitterStatus, isQuote);