Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -110,7 +110,8 @@ const analyzeEquipment = async function(nickname, characterCode, job) { | ... | @@ -110,7 +110,8 @@ const analyzeEquipment = async function(nickname, characterCode, job) { |
110 | let majorArcane = 0; | 110 | let majorArcane = 0; |
111 | const arcaneURLs = []; | 111 | const arcaneURLs = []; |
112 | $(".tab03_con_wrap .arcane_weapon_wrap .item_pot li span a").each(async function() { | 112 | $(".tab03_con_wrap .arcane_weapon_wrap .item_pot li span a").each(async function() { |
113 | - arcaneURLs.push("https://maplestory.nexon.com" + $(this).attr("href")); | 113 | + if (!!$(this).attr("href")) |
114 | + arcaneURLs.push("https://maplestory.nexon.com" + $(this).attr("href")); | ||
114 | }); | 115 | }); |
115 | 116 | ||
116 | for (let i = 0; i < arcaneURLs.length; i++) { | 117 | for (let i = 0; i < arcaneURLs.length; i++) { | ... | ... |
-
Please register or login to post a comment