Remove tracing from media/playlist.py/extend()

This commit is contained in:
Parnikkapore 2021-09-24 20:00:37 +08:00
parent 3733353170
commit d60b53838e

View File

@ -87,15 +87,11 @@ class BasePlaylist(list):
return item
def extend(self, items):
print("extend to-enter")
with self.playlist_lock:
print("extend enter")
self.version += 1
super().extend(items)
self.pending_items.extend(items)
print("extend leave")
self.async_validate()
return items