오윤석

fix: 심볼이 다 채워지지 않는 경우 NaN으로 표시되는 오류

...@@ -110,6 +110,7 @@ const analyzeEquipment = async function(nickname, characterCode, job) { ...@@ -110,6 +110,7 @@ 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 + if (!!$(this).attr("href"))
113 arcaneURLs.push("https://maplestory.nexon.com" + $(this).attr("href")); 114 arcaneURLs.push("https://maplestory.nexon.com" + $(this).attr("href"));
114 }); 115 });
115 116
......