]> git.0d.be Git - botaradio.git/blobdiff - media/cache.py
fix: refresh video metatdata after validation
[botaradio.git] / media / cache.py
index 72261eb7733781f06804fa3905761c8cfdb7d9c6..eef1688901327cc367a05e0d0c7b3670975d6052 100644 (file)
@@ -177,15 +177,6 @@ class CachedItemWrapper:
             self.lib.save(self.id)
         return ret
 
-    def async_prepare(self):
-        th = threading.Thread(
-            target=self.prepare, name="Prepare-" + self.id[:7])
-        self.log.info(
-            "%s: start preparing item in thread: " % self.item().type + self.format_debug_string())
-        th.daemon = True
-        th.start()
-        return th
-
     def uri(self):
         return self.item().uri()