mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:34:44 +01:00
remove dead interface objects
This commit is contained in:
@@ -127,7 +127,9 @@ namespace MediaBrowser.Common.Implementations.Logging
|
||||
{
|
||||
for (var i = 0; i < paramList.Length; i++)
|
||||
{
|
||||
message = message.Replace("{" + i + "}", paramList[i].ToString());
|
||||
var obj = paramList[i];
|
||||
|
||||
message = message.Replace("{" + i + "}", (obj == null ? "null" : obj.ToString()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user