diff --git a/Jellyfin.Api/Controllers/ClientLogController.cs b/Jellyfin.Api/Controllers/ClientLogController.cs
index f50d560979..7068c97710 100644
--- a/Jellyfin.Api/Controllers/ClientLogController.cs
+++ b/Jellyfin.Api/Controllers/ClientLogController.cs
@@ -98,14 +98,14 @@ namespace Jellyfin.Api.Controllers
/// Document saved.
/// Event logging disabled.
/// Upload size too large.
- /// Created file name.
+ /// Create response.
[HttpPost("Document")]
- [ProducesResponseType(typeof(string), StatusCodes.Status200OK)]
+ [ProducesResponseType(typeof(ClientLogDocumentResponseDto), StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(StatusCodes.Status413PayloadTooLarge)]
[AcceptsFile(MediaTypeNames.Text.Plain)]
[RequestSizeLimit(MaxDocumentSize)]
- public async Task> LogFile()
+ public async Task> LogFile()
{
if (!_serverConfigurationManager.Configuration.AllowClientLogUpload)
{
@@ -123,7 +123,7 @@ namespace Jellyfin.Api.Controllers
var fileName = await _clientEventLogger.WriteDocumentAsync(authorizationInfo, Request.Body)
.ConfigureAwait(false);
- return Ok(fileName);
+ return Ok(new ClientLogDocumentResponseDto(fileName));
}
private void Log(ClientLogEventDto dto, AuthorizationInfo authorizationInfo)
diff --git a/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
new file mode 100644
index 0000000000..c7e5ead9ed
--- /dev/null
+++ b/Jellyfin.Api/Models/ClientLogDtos/ClientLogDocumentResponseDto.cs
@@ -0,0 +1,22 @@
+namespace Jellyfin.Api.Models.ClientLogDtos
+{
+ ///
+ /// Client log document response dto.
+ ///
+ public class ClientLogDocumentResponseDto
+ {
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ /// The file name.
+ public ClientLogDocumentResponseDto(string filename)
+ {
+ Filename = filename;
+ }
+
+ ///
+ /// Gets the resulting filename.
+ ///
+ public string Filename { get; }
+ }
+}