diff --git a/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs b/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs index fb77b1e4..09d04f94 100644 --- a/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs +++ b/src/Yavsc/ApiControllers/Blogspot/FileSystemApiController.cs @@ -113,7 +113,7 @@ namespace Yavsc.ApiControllers ); var info = user.MoveUserFileToDir(query.id, query.to); if (!info.Done) return new BadRequestObjectResult(info); - return Ok(); + return Ok(new { moved = query.id }); } [HttpPost]