qfjp / MediaLibraryCompression

A script to convert video files to x265 codec in mp4 containers. Forces hvc1 for MacOS Big Sur compatibility
GNU General Public License v3.0
2 stars 1 forks source link

Cache function ignores **kwargs for key in hash table. #9

Open qfjp opened 1 year ago

qfjp commented 1 year ago

Functions are only hashed based on name and *args, so if two functions have the same name & args but different kwargs the cache will still treat them the same, and possibly pull/write the wrong value.