diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue
index 797ba792..094e391f 100644
--- a/src/components/WatchVideo.vue
+++ b/src/components/WatchVideo.vue
@@ -11,7 +11,7 @@
:selectedAutoLoop="selectedAutoLoop"
/>
{{ video.title }}
-
+
{{ addCommas(video.views) }} views
{{ video.uploadDate }}
@@ -24,7 +24,11 @@
{{ addCommas(video.dislikes) }}
-
+
Watch on
@@ -53,7 +57,9 @@
{{ showDesc ? "Minimize Description" : "Show Description" }}
- Sponsors Segments: {{ sponsors.segments.length }}
+
+ Sponsors Segments: {{ sponsors.segments.length }}
+
@@ -190,7 +196,7 @@ export default {
.then(() => {
if (!this.video.error) {
document.title = this.video.title + " - Piped";
- this.channelId = this.video.uploaderUrl.split('/')[2];
+ this.channelId = this.video.uploaderUrl.split("/")[2];
this.fetchSubscribedStatus();
this.video.description = this.purifyHTML(
@@ -215,7 +221,7 @@ export default {
this.fetchJson(
this.apiUrl() + "/subscribed",
{
- channelId: this.channelId
+ channelId: this.channelId,
},
{
headers: {