diff --git a/src/commands/utility/file.js b/src/commands/utility/file.js index 5d5ef25..3e5cfe2 100644 --- a/src/commands/utility/file.js +++ b/src/commands/utility/file.js @@ -35,7 +35,8 @@ function shorten(str) { var urlStart = str.indexOf("://") + 3; if (urlStart == 2) urlStart = 0; - return str.length <= len ? str : `[${str.slice(urlStart, urlStart + (len - 3))}...](${str.startsWith("magnet:") ? (`${process.env.BASE_URL}/magnet/${str}`) : str})`; + + return str.length <= len ? str : `[${str.slice(urlStart, urlStart + (len - 3))}...](${(str.startsWith("magnet:") ? (`${process.env.BASE_URL}/magnet/${str}`) : str).replaceAll(" ", "%20")})`; } const emojis = JSON.parse(readFileSync("config/emojis.json")); @@ -97,4 +98,4 @@ module.exports = { }); pagination.render(); } -} \ No newline at end of file +}