Sleazy Fork is available in English.

Chaturbate Enhancer

Βελτιώνει το Chaturbate προσθέτοντας πολλές νέες δυνατότητες.

< Σχολιασμός για τον κώδικα Chaturbate Enhancer

Αναφορά: Καλός - ο κώδικας λειτουργεί

§
Δημοσιεύτηκε: 04/06/2023

hey, great script!

Found a bug though:

// line 2870
let hls = gMultiRoomsData[username]['hls'];
if(hls) {
  multiUpdateVideoQuality(hls, maxHeight);
}

hls will be undefined after a while (when the statuses get checked), because in the following line you're bombing it

// line 3182, there's also at line 3464, didn't check how much it impacts
gMultiRoomsData[username] = {
  'status': data['room_status']
};

didn't look through thoroughly, so I placed this at both places to not risk it

if (gMultiRoomsData[username]) {
  gMultiRoomsData[username].status = data['room_status'];
} else {
  gMultiRoomsData[username] = {
    'status': data['room_status'];
  };
};
// this should be ok at 3182
gMultiRoomsData[username].status = data['room_status'];
// and 3464 can be left unchanged
improper.devΔημιουργός
§
Δημοσιεύτηκε: 05/06/2023

Fixed! Thank you.

§
Δημοσιεύτηκε: 10/06/2023

hey, 812. 881. lines, redundant addStyles(style);

improper.devΔημιουργός
§
Δημοσιεύτηκε: 14/06/2023

Fixed! Thank you.

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.