add exception so that webapps with generic icon do not give errors

master
kirbylife 2021-05-04 00:58:33 -05:00
parent 9df07dcabd
commit 4c5d56bd57
1 changed files with 5 additions and 0 deletions

View File

@ -104,6 +104,11 @@ def main():
continue
break
app = apps[index]
if app["Icon"] == "icon-launcher-bookmark":
print("this webapp is using the generic icon of a bookmark and not a favicon so it is not possible to modify")
continue
while True:
pattern = input("Enter the pattern (0 = round, 1 = peak):\n>>> ")
if len(pattern) != 4: