Added repeat icon and fixed css path

This commit is contained in:
Carlos Galindo 2020-10-14 09:18:06 +02:00
parent 791f010f68
commit 4d5181ef18
3 changed files with 4 additions and 3 deletions

View file

@ -255,7 +255,7 @@ class SongLoader:
def copy_static(source_dir, target_dir):
for f in os.listdir(source_dir):
if re.search(r"\.(css|js)$", f):
if re.search(r"\.(css|js|svg)$", f):
shutil.copy2(join(source_dir, f), target_dir)