|
|
|
@ -820,6 +820,17 @@ namespace Emby.Server.Implementations.Session
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info.Item != null)
|
|
|
|
|
{
|
|
|
|
|
var msString = info.PositionTicks.HasValue ? (info.PositionTicks.Value / 10000).ToString(CultureInfo.InvariantCulture) : "unknown";
|
|
|
|
|
|
|
|
|
|
_logger.Info("Playback stopped reported by app {0} {1} playing {2}. Stopped at {3} ms",
|
|
|
|
|
session.Client,
|
|
|
|
|
session.ApplicationVersion,
|
|
|
|
|
info.Item.Name,
|
|
|
|
|
msString);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RemoveNowPlayingItem(session);
|
|
|
|
|
|
|
|
|
|
var users = GetUsers(session);
|
|
|
|
|