fix: fix store owned tags on event items
This commit is contained in:
parent
9f49fc848d
commit
8cd989af3d
1 changed files with 2 additions and 2 deletions
|
|
@ -254,7 +254,7 @@ function EventItems() {
|
||||||
|
|
||||||
if (Settings.StoreOwnTagOn === true) {
|
if (Settings.StoreOwnTagOn === true) {
|
||||||
Array.from(Container.querySelectorAll('a[href^="/store"]')).forEach((element) => {
|
Array.from(Container.querySelectorAll('a[href^="/store"]')).forEach((element) => {
|
||||||
LoadOwnedTags(element);
|
LoadOwnedTags(element, element.getAttribute('href').split('/')[2]);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -361,7 +361,7 @@ function EventItems() {
|
||||||
|
|
||||||
if (Settings.StoreOwnTagOn === true) {
|
if (Settings.StoreOwnTagOn === true) {
|
||||||
Array.from(Container.querySelectorAll('a[href^="/store"]')).forEach((element) => {
|
Array.from(Container.querySelectorAll('a[href^="/store"]')).forEach((element) => {
|
||||||
LoadOwnedTags(element);
|
LoadOwnedTags(element, element.getAttribute('href').split('/')[2]);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Reference in a new issue