Quote:
Originally Posted by horacio
If this problem occurs again we can do decode in index.html as it was before
if (m.tags && m.tags.length > 3) {m.tags = decodeURIComponent(m.tags).substr(0,46);}
|
I'm actually doing it on my private version, because I'm now trying to keep main.js original and do most of the stuff in index.html.
index.html:
Code:
if (m.topic) {
try {
m.topic = decodeURIComponent(m.topic);
}
catch (e) {
}
}
if (m.topic && m.topic.length > 80) {
m.topic = m.topic.substr(0, 79) + '…';
}
The url for the snap images is also being processed in index.html
Main.js:
Code:
onlineModels.push({
nm: m[0],
uid: m[2],
vs: m[3],
camserv: m[6],
new_model: m[15],
camscore: m[16],
continent: m[17],
missmfc: m[19],
rc: m[20],
topic: m[21]