Make serializable again
diff --git a/endpoints/all.py b/endpoints/all.py
index 019b864..e7ade8c 100644
--- a/endpoints/all.py
+++ b/endpoints/all.py
@@ -23,8 +23,8 @@
 
 async def process(state: plugins.configuration.BlockyConfiguration, request, formdata: dict) -> dict:
     return {
-        "block_list": state.block_list,
-        "allow_list": state.allow_list,
+        "block_list": [x for x in state.block_list],
+        "allow_list": [x for x in state.allow_list],
     }