Hello me and a friend made a little code to remove any secret keys from tracker links
Row 791 in js/webui.js
Code:
var pattern = new RegExp("^https?://[a-z0-9]*\.?[a-z0-9\-]+\.[a-z0-9\:]+\/","i");
var resultat = pattern.exec(trk['name']);
trk['name'] = resultat[0];
Maybe some dev want to integrate this into the next version also ?
[edit] There is some other way it collects the data for the general tab, but it seems to be overwritten when some asyncron read is done. i havent found out how it collects the first value yet.
/Znubbis
Row 791 in js/webui.js
Code:
var pattern = new RegExp("^https?://[a-z0-9]*\.?[a-z0-9\-]+\.[a-z0-9\:]+\/","i");
var resultat = pattern.exec(trk['name']);
trk['name'] = resultat[0];
Maybe some dev want to integrate this into the next version also ?
[edit] There is some other way it collects the data for the general tab, but it seems to be overwritten when some asyncron read is done. i havent found out how it collects the first value yet.
/Znubbis