Skip to content

Commit

Permalink
📦 Version 4.7.12+20241016.1902 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
LSS-Manager-Bot committed Oct 16, 2024
1 parent b60a32c commit ffa1a61
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lss-manager-v4",
"version": "4.7.12+20241015.2015",
"version": "4.7.12+20241016.1902",
"license": "CC-BY-NC-SA-4.0",
"scripts": {
"quickbuild": "./build/build.sh --quick",
Expand Down
4 changes: 2 additions & 2 deletions src/generated/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"firefox": {
"download": "https://firefox.com",
"latest": 130,
"supported": 124
"latest": 131,
"supported": 125
},
"opera": {
"download": "https://opera.com",
Expand Down
7 changes: 5 additions & 2 deletions src/modules/redesign/parsers/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ export default <RedesignParser<ProfileWindow>>(({ LSSM, doc, href = '' }) => {
})),
has_map: !!doc.querySelector<HTMLDivElement>('#profile_map'),
buildings: Array.from(doc.scripts)
.filter(script => script.textContent?.includes('buildingMarkerAddSingle'))
.filter(script =>
script.textContent?.includes('buildingMarkerAddSingle')
)
.flatMap(script => {
const tree = parse(script.textContent ?? '', {
ecmaVersion: 'latest',
Expand All @@ -139,7 +141,8 @@ export default <RedesignParser<ProfileWindow>>(({ LSSM, doc, href = '' }) => {
'expression' in node &&
node.expression.type === 'CallExpression' &&
node.expression.callee.type === 'Identifier' &&
node.expression.callee.name === 'buildingMarkerAddSingle' &&
node.expression.callee.name ===
'buildingMarkerAddSingle' &&
markerNodes.push(node)
);

Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4157,9 +4157,9 @@ __metadata:
linkType: hard

"caniuse-lite@npm:^1.0.30001639, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001663":
version: 1.0.30001668
resolution: "caniuse-lite@npm:1.0.30001668"
checksum: 10c0/247b3200aeec55038f3a11f3e6ab66f656c54d30df7b01d8d447efaba9af96ad3e17128da2ddd42ddc9cb6c286bac65b634a20955b3cc6619be7ca4601fddc8e
version: 1.0.30001669
resolution: "caniuse-lite@npm:1.0.30001669"
checksum: 10c0/f125f23440d3dbb6c25ffb8d55f4ce48af36a84d0932b152b3b74f143a4170cbe92e02b0a9676209c86609bf7bf34119ff10cc2bc7c1b7ea40e936cc16598408
languageName: node
linkType: hard

Expand Down

0 comments on commit ffa1a61

Please sign in to comment.