Compare commits

...

2 Commits

Author SHA1 Message Date
daniel156161 dd3547678c add 2.5x speed selector
Build and Push Docker Container / build-and-push (push) Successful in 5m52s
2026-04-06 17:59:32 +02:00
daniel156161 0af5f58688 fix loading of storage and not crash the request 2026-04-06 17:59:10 +02:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ from .EdgeDB import EdgeDB
class StorageLoader:
@classmethod
def build(self, selected_storage:str) -> LocalStorage|EdgeDB:
storage_module = __import__(f"server.storage.{selected_storage}", fromlist=[selected_storage])
storage_module = __import__(f"server.database.{selected_storage}", fromlist=[selected_storage])
storage_class = getattr(storage_module, selected_storage)
return storage_class
+1
View File
@@ -735,6 +735,7 @@
<option value="650" selected>1x</option>
<option value="400">1.5x</option>
<option value="250">2x</option>
<option value="160">2.5x</option>
</select>
</label>
<input type="range" min="0" max="0" step="1" id="turn-slider" value="0">