Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Wilkinson <henry@wilkinson.graphics>2021-11-30 19:46:52 +0300
committerGitHub <noreply@github.com>2021-11-30 19:46:52 +0300
commitf1c4029075ea1461c6d32102361b789197a6d0c2 (patch)
tree8575eb265667ff03e220b62d128a52a95b017a75 /Website
parentf44f22eaae083d5294fed4b3158eac75fb1c21a6 (diff)
Improves FAQ wording
Some minor grammar fixes and sentence improvements.
Diffstat (limited to 'Website')
-rw-r--r--Website/pages/faq.vue14
1 files changed, 7 insertions, 7 deletions
diff --git a/Website/pages/faq.vue b/Website/pages/faq.vue
index 375462a..5e40638 100644
--- a/Website/pages/faq.vue
+++ b/Website/pages/faq.vue
@@ -21,23 +21,23 @@
data: () => ({
items: [
{
- question: "Where does extension get data?",
- answer: "Combination of GoogleAPI data and scraped data. We save all available data to our DB for it to be available after google shuts down dislike counts in their API."
+ question: "Where does the extension get its data?",
+ answer: "A combination of Google's API data and scraped data. We save all available data to our DB so it can be made available after Google removes dislike counts from their API."
},
{
- question: "Video dislike count doesn't update",
- answer: "Right now video dislikes are cached, and arent updated very frequenly. Once in 2-3 days, not more often Yeah, it's not ideal, but it is what it is. Working on improving how often we can update them"
+ question: "Why isn't the dislike count updating?",
+ answer: "Right now video dislikes are cached and they arent updated very frequenly. Currently this is set to update once every 2–3 days. This isn't ideal and we are working on improving how often we can update them"
},
{
question: "How does this work?",
- answer: "The extension collects the video id of the video you are watching, fetches the dislike (and other fields like views, likes etc) using our API, if this is the first time the video was fetched by our API, it will use the YouTube API to get the data, then stores the data in a database for caching (cached for around 2-3 days) and archiving purposes and returns it to you. The extension then displays the dislikes to you."
+ answer: "The extension collects the video ID of the video you are watching, fetches the dislike (and other fields like views, likes etc) using our API, if this is the first time the video was fetched by our API, it will use the YouTube API to get the data, then store it in the database for caching (cached for around 2-3 days) and archiving purposes, and returns it to you. The extension then displays the dislike count and ratio on the page."
},
{
question: "What will happen after the YouTube API stops returning the dislike count?",
- answer: "The backend will switch to using a combination of archived dislike stats, estimates extrapolated from extension user data and estimates based on view/like ratios for videos whose dislikes weren't archived and for outdated dislike archives."
+ answer: "The backend will switch to using a combination of archived dislike stats, estimates extrapolated from extension user data, and estimates based on view/like ratios for videos whose dislikes weren't archived as well as outdated dislike count archives."
},
],
}),
}
-</script> \ No newline at end of file
+</script>