Remove window.rhymix_debug_pending_data

This commit is contained in:
Kijin Sung 2025-05-21 13:58:39 +09:00
parent a778c46afa
commit 3d64c26232
2 changed files with 5 additions and 7 deletions

View file

@ -244,9 +244,9 @@ $(function() {
}
// Add debug data from pending AJAX requests.
if (window.rhymix_debug_pending_data) {
while (window.rhymix_debug_pending_data.length) {
rhymix_debug_add_data(window.rhymix_debug_pending_data.shift());
if (Rhymix.pendingDebugData) {
while (Rhymix.pendingDebugData.length) {
rhymix_debug_add_data(Rhymix.pendingDebugData.shift());
}
}
});