share
This commit is contained in:
		| @@ -14,7 +14,7 @@ class MemeUtil: | ||||
|  | ||||
|     def __init__(self, constants) -> None: | ||||
|         self.constants = constants | ||||
|         self.meme_db_path = os.path.join("/usr/local/share", "sqlite_dbs", "meme.db") | ||||
|         self.meme_db_path = os.path.join("/mnt/data/share", "sqlite_dbs", "meme.db") | ||||
|  | ||||
|     def is_png(self, buffer: bytes | io.BytesIO) -> bool: | ||||
|         """ | ||||
|   | ||||
| @@ -38,22 +38,22 @@ class RadioUtil: | ||||
|         self.gpt = gpt.GPT(self.constants) | ||||
|         self.ls_uri: str = self.constants.LS_URI | ||||
|         self.sqlite_exts: list[str] = [ | ||||
|             "/home/api/api/solibs/spellfix1.cpython-311-x86_64-linux-gnu.so" | ||||
|             "/home/kyle/api/solibs/spellfix1.cpython-311-x86_64-linux-gnu.so" | ||||
|         ] | ||||
|         self.active_playlist_path: str = os.path.join( | ||||
|             "/usr/local/share", "sqlite_dbs", "track_file_map.db" | ||||
|             "/mnt/data/share", "sqlite_dbs", "track_file_map.db" | ||||
|         ) | ||||
|         self.artist_genre_db_path: str = os.path.join( | ||||
|             "/usr/local/share", "sqlite_dbs", "artist_genre_map.db" | ||||
|             "/mnt/data/share", "sqlite_dbs", "artist_genre_map.db" | ||||
|         ) | ||||
|         self.album_art_db_path: str = os.path.join( | ||||
|             "/usr/local/share", "sqlite_dbs", "track_album_art.db" | ||||
|             "/mnt/data/share", "sqlite_dbs", "track_album_art.db" | ||||
|         ) | ||||
|         self.playback_genres: list[str] = [ | ||||
|             # "post-hardcore", | ||||
|             # "post hardcore", | ||||
|             # "metalcore", | ||||
|             "deathcore", | ||||
|             # "deathcore", | ||||
|             # "edm", | ||||
|             # "electronic", | ||||
|             # "hard rock", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user