Compare commits

..

No commits in common. "FurtherDevelopment" and "main" have entirely different histories.

2 changed files with 11 additions and 11 deletions

View file

@ -162,7 +162,7 @@ async function PosterContainerUpdate(Direction) {
// Mastodon gaining of timeline.
if (localStorage.getItem(Variables.MastodonWebsite) == null) {
console.log("No Mastodon instance. multiplying posts by 2...");
console.log("No Mastodon instance. multiplying mastodon posts by 2...");
Lim = Lim * 2;
Mastodon = false;
} else if (MastodonLoadedFeed == 0) {
@ -179,7 +179,7 @@ async function PosterContainerUpdate(Direction) {
}
// Bluesky gaining of timeline.
if (localStorage.getItem(Variables.BlueskyPDS) == null) {
console.log("No Bluesky instance. multiplying posts by 2...");
console.log("No Bluesky instance. multiplying mastodon posts by 2...");
Lim = Lim * 2;
Bluesky = false;
} else if (BlueskyLoadedFeed.length == 0) {

View file

@ -36,17 +36,17 @@ async function Post() {
// Adding tags
let TempText = Text;
let Tags = TagsInputArea.value.split(";");
if (Tags[0] != "") {
if (Tags.length >= 1) {
TempText += "<br/><br/>";
for (let i of Tags) {
while (i[0] == " ") {
i = i.substring(1, i.length);
}
if (i[0] != "#" && i.length != 0) {
i = "#" + i;
}
TempText += i + " ";
}
for (let i of Tags) {
while (i[0] == " ") {
i = i.substring(1, i.length);
}
if (i[0] != "#" && i.length != 0) {
i = "#" + i;
}
TempText += i + " ";
}
switch(Visible) {
case "Public":