Skip to content

Commit 9eb5951

Browse files
committed
Fix file uploads
1 parent 9058882 commit 9eb5951

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ async def uploadEnd(job_id: str, input_id: str) -> None:
294294
)
295295
return None
296296
file_data = upload_op.finish()
297-
self.input[input_id].set(file_data)
297+
self.input[input_id]._set(file_data)
298298
# Explicitly return None to signal that the message was handled.
299299
return None
300300

0 commit comments

Comments
 (0)