diff --git a/src/invidious/views/history.ecr b/src/invidious/views/history.ecr
index 691201cd..3830e9c4 100644
--- a/src/invidious/views/history.ecr
+++ b/src/invidious/views/history.ecr
@@ -2,6 +2,17 @@
History - Invidious
<% end %>
+
+
+
<%= user.watched.size %> videos
+
+
+
+
<% watched.each_slice(4) do |slice| %>
<% slice.each do |item| %>
@@ -34,6 +45,8 @@
function mark_unwatched(target) {
var tile = target.parentNode.parentNode.parentNode.parentNode;
tile.style.display = "none";
+ var count = document.getElementById("count")
+ count.innerText = count.innerText - 1;
var url = "/mark_unwatched?redirect=false&id=" + target.getAttribute("data-id");
var xhr = new XMLHttpRequest();
@@ -45,6 +58,7 @@ function mark_unwatched(target) {
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status != 200) {
+ count.innerText = count.innerText - 1 + 2;
tile.style.display = "";
}
}
diff --git a/src/invidious/views/subscription_manager.ecr b/src/invidious/views/subscription_manager.ecr
index ac1c0cdd..b838a24d 100644
--- a/src/invidious/views/subscription_manager.ecr
+++ b/src/invidious/views/subscription_manager.ecr
@@ -57,6 +57,7 @@ function remove_subscription(target) {
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status != 200) {
+ count.innerText = count.innerText - 1 + 2;
row.style.display = "";
}
}