1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 02:16:23 +00:00

HTTP Updater: Only include first commit line

This commit is contained in:
Nuckyz 2024-03-12 20:18:46 -03:00 committed by Luna
parent 03f49e3a9c
commit be86cda0e9

View file

@ -53,7 +53,7 @@ async function calculateGitChanges() {
// github api only sends the long sha // github api only sends the long sha
hash: c.sha.slice(0, 7), hash: c.sha.slice(0, 7),
author: c.author.login, author: c.author.login,
message: c.commit.message message: c.commit.message.substring(c.commit.message.indexOf("\n") + 1)
})); }));
} }