testing the test
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 32s

This commit is contained in:
Lee 2024-04-25 23:59:36 +01:00
parent 11ae94dc3e
commit a558b4f746
2 changed files with 2 additions and 3 deletions

@ -15,8 +15,7 @@ export default class PlayerPage extends Page {
const id = getPlayerIdFromUrl();
const player = await getPlayer(id);
console.log(player);
await this.addStats(player);
await this.addStats(player); // Add our custom stats
} catch (error) {
console.error("Failed to load player page", error);
}

@ -19,13 +19,13 @@ module.exports = {
},
plugins: [
new UserscriptPlugin({
metajs: false,
headers: {
name: "ScoreSaber Utils",
"run-at": "document-end",
match: "https://scoresaber.com/*",
updateURL: "https://ssu.fascinated.cc/scripts/bundle.user.js",
downloadURL: "https://ssu.fascinated.cc/scripts/bundle.user.js",
require: ["https://ssu.fascinated.cc/scripts/bundle.meta.js"],
version: `1.0.0-${process.env.GIT_REV || 'dev'}`,
}
})