diff options
author | crupest <crupest@outlook.com> | 2020-06-04 00:40:19 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-04 00:40:19 +0800 |
commit | 189214cae17d6255989529ff47b2d963ed4c1038 (patch) | |
tree | 5e8010143dcc151dea369dd786cf060acc0c3fe4 /Timeline/Models/Http/UserInfo.cs | |
parent | e0f80f02ff60e901a20713d906ff212700861863 (diff) | |
download | timeline-189214cae17d6255989529ff47b2d963ed4c1038.tar.gz timeline-189214cae17d6255989529ff47b2d963ed4c1038.tar.bz2 timeline-189214cae17d6255989529ff47b2d963ed4c1038.zip |
chore(back): Fix some warnings.
Diffstat (limited to 'Timeline/Models/Http/UserInfo.cs')
-rw-r--r-- | Timeline/Models/Http/UserInfo.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Timeline/Models/Http/UserInfo.cs b/Timeline/Models/Http/UserInfo.cs index b4bf14c1..0acb1a80 100644 --- a/Timeline/Models/Http/UserInfo.cs +++ b/Timeline/Models/Http/UserInfo.cs @@ -37,10 +37,9 @@ namespace Timeline.Models.Http public UserInfoLinks Resolve(User source, UserInfo destination, UserInfoLinks destMember, ResolutionContext context)
{
- if (_actionContextAccessor.ActionContext == null)
- throw new InvalidOperationException("No action context, can't fill urls.");
+ var actionContext = _actionContextAccessor.AssertActionContextForUrlFill();
+ var urlHelper = _urlHelperFactory.GetUrlHelper(actionContext);
- var urlHelper = _urlHelperFactory.GetUrlHelper(_actionContextAccessor.ActionContext);
var result = new UserInfoLinks
{
Self = urlHelper.ActionLink(nameof(UserController.Get), nameof(UserController)[0..^nameof(Controller).Length], new { destination.Username }),
|