Catches GeoCookie JSON parsing error

This commit is contained in:
chimo 2014-05-31 18:11:04 -04:00
parent 75711ae06a
commit 8be96a7ebe
1 changed files with 14 additions and 10 deletions

View File

@ -1177,6 +1177,7 @@ var SN = { // StatusNet
}
}
} else {
try {
var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
form.find('[name=lat]').val(cookieValue.NLat);
@ -1189,6 +1190,9 @@ var SN = { // StatusNet
label
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
.addClass('checked');
} catch (e) {
console.log('Parsing error:', e);
}
}
} else {
removeNoticeDataGeo();