Skip to content

Commit 503a97b

Browse files
committed
Fix nullref
1 parent 09a1bbb commit 503a97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReplayBrowser/Controllers/AccountController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ [FromQuery] string guid
162162
}
163163

164164
zipStream.Seek(0, SeekOrigin.Begin);
165-
var fileName = $"account-gdpr-{user.Guid}_{DateTime.Now:yyyy-MM-dd}.zip";
165+
var fileName = $"account-gdpr-{guid}_{DateTime.Now:yyyy-MM-dd}.zip";
166166
return File(zipStream, "application/zip", fileName);
167167
}
168168

0 commit comments

Comments
 (0)