Add method to create a “success” JSON object.
[Sone.git] / src / main / java / net / pterodactylus / sone / web / ajax / UnlikeAjaxPage.java
index ecacf98..6a4dde7 100644 (file)
@@ -60,7 +60,7 @@ public class UnlikeAjaxPage extends JsonPage {
                } else {
                        return createErrorJsonObject("invalid-type");
                }
-               return new JsonObject().put("success", true);
+               return createSuccessJsonObject();
        }
 
 }