Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/note_input_widget/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ def _submit(self):

# ask the data retriever to execute an async callback
if self.__sg_data_retriever:
self._processing_id = self.__sg_data_retriever.execute_method(self._async_submit, data)
self._processing_id = self.__sg_data_retriever.execute_method_with_priority(
self._async_submit, self.__sg_data_retriever._SG_CREATE_CALL_PRIORITY, data)
if self._outgoing_tasks:
self._outgoing_tasks.add(self._processing_id)
# If the entity being acted on is a Note then we are creating a Reply, otherwise a "Note"
Expand Down