Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task<string> ImportFile([FromBody] WebApplication1.Model.FileInfo p
// We can modify the code to retrieve the document from a different location or source.
Syncfusion.EJ2.DocumentEditor.WordDocument document = GetSourceDocument();
// Get the list of pending operations for the document
List<ActionInfo> actions = await GetPendingOperations(param.fileName, 0, -1);
List<ActionInfo> actions = await GetPendingOperations(param.roomName, 0, -1);
if (actions != null && actions.Count > 0)
{
// If there are any pending actions, update the document with these actions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public string fileName
get;
set;
}
public string documentOwner
public string roomName
{
get;
set;
Expand Down