diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-12 18:49:45 -0400 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-12 18:49:45 -0400 |
| commit | 0cc0fbbe4300e58ec4faae9ba9e94787382e1a79 (patch) | |
| tree | 292c8d97cc00aea0665490f896b6f507a134826a /MediaBrowser.ServerApplication/EntryPoints | |
| parent | 6b327581c690b5c1c6241ab10adce8d56e6fdb68 (diff) | |
#22 - Need to strip html tags from overviews
Diffstat (limited to 'MediaBrowser.ServerApplication/EntryPoints')
| -rw-r--r-- | MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs b/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs index b498a6fe4..2ee3193dc 100644 --- a/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs +++ b/MediaBrowser.ServerApplication/EntryPoints/WebSocketEvents.cs @@ -174,7 +174,7 @@ namespace MediaBrowser.ServerApplication.EntryPoints /// <param name="e">The e.</param> async void userManager_UserUpdated(object sender, GenericEventArgs<User> e) { - var dto = await new DtoBuilder(_logger).GetUserDto(e.Argument).ConfigureAwait(false); + var dto = await new DtoBuilder(_logger, _libraryManager).GetUserDto(e.Argument).ConfigureAwait(false); _serverManager.SendWebSocketMessage("UserUpdated", dto); } |
