From 23351c79abedeb30bb235b2b1982b35ce00bb45a Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Mon, 23 Jun 2025 16:21:50 +0300 Subject: [PATCH] Fixes: 1) Corrected callable usage for `attachment_upload_to` in Summernote settings; Extra: None; --- evibes/settings/summernote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evibes/settings/summernote.py b/evibes/settings/summernote.py index 2e139290..f7f4edf0 100644 --- a/evibes/settings/summernote.py +++ b/evibes/settings/summernote.py @@ -16,7 +16,7 @@ SUMMERNOTE_CONFIG = { ["view", ["fullscreen", "codeview", "help"]], ], }, - "attachment_upload_to": evibes_summernote_upload_to_func(), + "attachment_upload_to": evibes_summernote_upload_to_func, "attachment_require_authentication": True, "disable_attachment": False, "attachment_absolute_uri": True,