Fix emails in fetched posts from foolz.

This commit is contained in:
Nicolas Stepien 2012-09-11 18:52:11 +02:00
parent ffa843c612
commit bbcb738b41
2 changed files with 2 additions and 2 deletions

View File

@ -3614,7 +3614,7 @@
})(),
tripcode: data.trip,
uniqueID: data.poster_hash,
email: encodeURIComponent(data.email),
email: data.email ? encodeURIComponent(data.email) : '',
subject: data.title_processed,
flagCode: data.poster_country,
flagName: data.poster_country_name_processed,

View File

@ -2839,7 +2839,7 @@ Get =
when 'D' then 'developer'
tripcode: data.trip
uniqueID: data.poster_hash
email: encodeURIComponent data.email
email: if data.email then encodeURIComponent data.email else ''
subject: data.title_processed
flagCode: data.poster_country
flagName: data.poster_country_name_processed