Fix typo in log message

This commit is contained in:
DarkFighterLuke
2024-09-11 15:08:29 +02:00
parent 9fff31c451
commit 52342b3dc3
@@ -136,7 +136,7 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.Tasks
var statusCode = await taApi.SetWatchedStatus(videoYTId, isVideoPlayed).ConfigureAwait(true);
if (statusCode != System.Net.HttpStatusCode.OK)
{
_logger.LogInformation("{Message}", $"POST /watched returned {statusCode} for video {video.Name} ({videoYTId}) with wacthed status {isVideoPlayed}");
_logger.LogInformation("{Message}", $"POST /watched returned {statusCode} for video {video.Name} ({videoYTId}) with watched status {isVideoPlayed}");
}
}
}