修复由切换qq头像和gravatar头像导致的报错问题

pull/193/head
Parasomnia 2020-03-06 17:59:17 +08:00
parent ccb0b6f5da
commit aa221716b1
1 changed files with 45 additions and 42 deletions

View File

@ -864,7 +864,9 @@ function getqqinfo() {
}
var emailAddressFlag = cached.filter('#email').val();
cached.filter('#author').on('blur', function () {
var qq = cached.filter('#author').val();
var qq = cached.filter('#author').val(),
$reg = /^[1-9]\d{4,9}$/;
if ($reg.test(qq)) {
$.ajax({
type: 'get',
url: mashiro_option.qq_api_url + '?qq=' + qq + '&_wpnonce=' + Poi.nonce,
@ -911,6 +913,7 @@ function getqqinfo() {
}
}
});
}
// $.ajax({
// type: 'get',
// url: mashiro_option.qq_avatar_api_url + '?type=getqqavatar&qq=' + qq,