mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Bugfixes
This commit is contained in:
parent
a20294ba1f
commit
52d0b06781
4 changed files with 4 additions and 4 deletions
|
@ -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.",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue