Skip to content

Commit d2a11d4

Browse files
committed
fix backend call, revert dependency bump
1 parent cf19127 commit d2a11d4

File tree

3 files changed

+32
-287
lines changed

3 files changed

+32
-287
lines changed

jupyter_fsspec/handlers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,10 @@ async def process_content(self, content):
260260

261261
if content:
262262
try:
263-
content = base64.b64decode(content, validate=True)
263+
content = base64.b64decode(content)
264264
except (binascii.Error, UnicodeDecodeError) as e:
265265
logger.error(f"Error decoding base64: {e}")
266+
raise
266267
return content
267268

268269
# GET

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
"watch:labextension": "jupyter labextension watch ."
6060
},
6161
"dependencies": {
62-
"@jupyterlab/application": "^4.3.0",
63-
"@jupyterlab/apputils": "^4.3.0",
64-
"@jupyterlab/docregistry": "^4.3.0",
65-
"@jupyterlab/filebrowser": "^4.3.0",
66-
"@jupyterlab/settingregistry": "^4.3.0",
67-
"@jupyterlab/ui-components": "^4.3.0",
62+
"@jupyterlab/application": "^4.0.0",
63+
"@jupyterlab/apputils": "^4.0.0",
64+
"@jupyterlab/docregistry": "^4.0.0",
65+
"@jupyterlab/filebrowser": "^4.0.0",
66+
"@jupyterlab/settingregistry": "^4.0.0",
67+
"@jupyterlab/ui-components": "^4.0.0",
6868
"buffer": "^6.0.3",
6969
"path": "^0.12.7",
7070
"react": "^18.3.1",

0 commit comments

Comments
 (0)