Skip to content

Commit d316457

Browse files
Opening a mini profile while on a profile no longer results in the FF Scouter being shown on the profile.
1 parent 3499392 commit d316457

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension/changelog.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"fixes": [
99
{ "message": "Correctly count the supply pack value.", "contributor": "DeKleineKobini" },
1010
{ "message": "Avoid an error on the item market when switching categories.", "contributor": "DeKleineKobini" },
11-
{ "message": "Actually show an error when the revive request fails instead of showing the success message.", "contributor": "DeKleineKobini" }
11+
{ "message": "Actually show an error when the revive request fails instead of showing the success message.", "contributor": "DeKleineKobini" },
12+
{ "message": "Opening a mini profile while on a profile no longer results in the FF Scouter being shown on the profile.", "contributor": "DeKleineKobini" }
1213
],
1314
"changes": [{ "message": "Better optimize calls to tornpal.", "contributor": "DeKleineKobini" }],
1415
"removed": []

extension/scripts/features/ff-scouter/ttFFScouterMiniProfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
element.setAttribute("title", detailMessage);
4848
}
4949

50-
requireElement(".profile-container .description").then((d) => d.appendChild(element));
50+
requireElement("#profile-mini-root .profile-container .description").then((d) => d.appendChild(element));
5151
});
5252
}
5353
})();

0 commit comments

Comments
 (0)