Fix error caused when cant get changelog

This commit is contained in:
Loup-Garou911XD 2024-04-25 18:20:00 +05:30
parent 0d7079f0a0
commit 12cadaab4c
3 changed files with 7 additions and 2 deletions

View file

@ -31,7 +31,7 @@ from datetime import datetime
from threading import Thread
import logging
PLUGIN_MANAGER_VERSION = "1.0.17"
PLUGIN_MANAGER_VERSION = "1.0.18"
REPOSITORY_URL = "https://github.com/bombsquad-community/plugin-manager"
# Current tag can be changed to "staging" or any other branch in
# plugin manager repo for testing purpose.
@ -104,7 +104,7 @@ REGEXP = {
DISCORD_URL = "https://ballistica.net/discord"
_CACHE = {}
_CACHE = {"changelog": "None"}
class MD5CheckSumFailed(Exception):