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
2 changes: 1 addition & 1 deletion Rock/Web/UI/Controls/Grid/Grid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2184,7 +2184,7 @@ protected void Actions_ExcelExportClick( object sender, EventArgs e )
// Safely retrieve the cancellation token so Rock can cancel the export if the request is aborted.
// Checking if the request is cancelled is cheap but it makes the code less readable,
// thus cancellation checks should only be added before performance-heavy regions.
var cancellationToken = Context?.GetOwinContext()?.Request?.CallCancelled ?? CancellationToken.None;
var cancellationToken = CancellationToken.None;

// Create the excel file.
using ( var excel = new ExcelPackage() )
Expand Down