View Single Post
  #968  
Old 07-04-2017, 06:36 PM
ZeChico ZeChico is offline
Member
 
Join Date: Apr 2014
Posts: 31
ZeChico is on a distinguished road
Default

Re: www.myfreecams.com: How can I record free sex web-cam chat (rtmp:// .flv)


Quote:
Originally Posted by horacio View Post
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]
Reply With Quote