Skip to content

Commit

Permalink
Remove extra logging
Browse files Browse the repository at this point in the history
  • Loading branch information
temportalflux committed May 13, 2020
1 parent c0f07e7 commit 11d0548
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion modules/patches/Playlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {overrideFunc} from './patcher.js'
import { getApi } from '../apis/index.js';

Playlist.prototype.findOrCreatePlayer = function(sound) {
console.log(sound);
if (sound.flags.bIsStreamed && sound.flags.streamingApi !== undefined)
{
return getApi(sound.flags.streamingApi).findOrCreatePlayer(
Expand Down
1 change: 0 additions & 1 deletion modules/patches/patcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export function htmlOnChange(html, queryString, callback)
export function htmlEvent(html, queryString, evt, callback)
{
const query = html.find(queryString);
console.log(html, queryString, query);
if (query.length > 0)
{
query.on(evt, callback);
Expand Down

0 comments on commit 11d0548

Please sign in to comment.