07/10/23 10:25:21 FdPNn4vO0
>>430
foxage2ch.js 248-253行を下記の通り書き替え(2.5.7)
foxage2ch.trace(foxage2ch.STRING.getString("SUCCEED"));
var matched = this.responseText.match(/<title>([^<]+)<\/title>/i);
if (!matched)
return;
var title = foxage2chUtils.convertToUnicode(matched[1], charset);
var type = foxage2chData.getProperty(aRes, "type");
↓
foxage2ch.trace(foxage2ch.STRING.getString("SUCCEED"));
var type = foxage2chData.getProperty(aRes, "type");
var matched = this.responseText.match(/<title>([^<]+)<\/title>/i);
if (type == "thread" && url.indexOf("bbs.nicovideo.jp/") > 0)
matched = this.responseText.match(/<span class="title thread_subject">([^<]+)<\/span>/i);
if (!matched)
return;
var title = foxage2chUtils.convertToUnicode(matched[1], charset);