diff --git a/CSS/index.css b/CSS/index.css index 47d879f..231b039 100644 --- a/CSS/index.css +++ b/CSS/index.css @@ -54,6 +54,7 @@ html { overflow-x: hidden; + overflow-y: hidden; } /* Classes for the warning section*/ diff --git a/HTML/expanded.html b/HTML/expanded.html index 04f3cf3..76ce64e 100644 --- a/HTML/expanded.html +++ b/HTML/expanded.html @@ -3,6 +3,7 @@ The Fediverse + diff --git a/HTML/mail.html b/HTML/mail.html index 6c6bf45..d9417a7 100644 --- a/HTML/mail.html +++ b/HTML/mail.html @@ -3,6 +3,7 @@ The Fediverse + diff --git a/HTML/post.html b/HTML/post.html index 01ed25d..612c6e9 100644 --- a/HTML/post.html +++ b/HTML/post.html @@ -3,6 +3,7 @@ The Fediverse + diff --git a/HTML/setting.html b/HTML/setting.html index 4e71edd..51f38ed 100644 --- a/HTML/setting.html +++ b/HTML/setting.html @@ -3,6 +3,7 @@ The Fediverse + diff --git a/JS/MastodonAPI.js b/JS/MastodonAPI.js index 6ce89e1..4950e41 100644 --- a/JS/MastodonAPI.js +++ b/JS/MastodonAPI.js @@ -104,7 +104,6 @@ export async function CreateStatus(Text, Visibility = "public") { // This is in case you went over the characters. if (status == 422) { let matches = body.error.match(/(\d+)/); - console.log(matches); request = fetch(Website + "/api/v1/statuses?status=" + Text.slice(0, matches[0] - 1) + "&visibility=" + Visibility, {method: "POST", headers: {"Authorization": localStorage.getItem(Variables.MastodonTokenType) + " " + localStorage.getItem(Variables.MastodonAccessToken)}}); body = await request.then((response) => response.json()); await CreateReplyStatus(Text.slice(matches[0] - 1, Text.length - 1), Visibility, body.id); diff --git a/JS/expanded.js b/JS/expanded.js index 41c3c74..497f650 100644 --- a/JS/expanded.js +++ b/JS/expanded.js @@ -32,7 +32,7 @@ Boost.onclick = (event) => { if (website == "Mastodon") { MastodonAPI.SendReblog(post.id, post.reblogged); } else if (website == "Bluesky") { - console.log(BlueskyAPI.SendRepost(localStorage.getItem(Variables.BlueskyDID), post.post.uri, post.post.cid)); + BlueskyAPI.SendRepost(localStorage.getItem(Variables.BlueskyDID), post.post.uri, post.post.cid); } SetBoost(); } diff --git a/JS/index.js b/JS/index.js index c6ed0f6..f8e93f2 100644 --- a/JS/index.js +++ b/JS/index.js @@ -164,9 +164,6 @@ async function PosterContainerUpdate(Direction) { CurrentThing = CurrentThing - Lim; } } - // Debugging - console.log(MastodonLoadedFeed); - console.log(BlueskyLoadedFeed); // The first one is for counting. // The countergroup increments to another timeline once posts hit the "limit". let counter = 0; diff --git a/index.html b/index.html index e7fd9e7..8ca936d 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ The Fediverse +