Skip to content

Commit

Permalink
fix: add nextcloud image with correct filename and not path
Browse files Browse the repository at this point in the history
  • Loading branch information
LoanR committed Apr 22, 2024
1 parent ed47181 commit 6934e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/b3desk/endpoints/meeting_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def add_meeting_file_nextcloud(path, meeting_id, is_default):
)

meeting_file = MeetingFiles(
title=path,
title=path.split("/")[-1],
created_at=date.today(),
meeting_id=meeting_id,
nc_path=path,
Expand Down

0 comments on commit 6934e8f

Please sign in to comment.