X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FMoveProfileFieldAjaxPage.java;h=5e8a2bd7635f74901e28a8789e02d3f5f0bb9009;hb=2e03e9dddbea4b81aacaf1aa316f5c3ccffd4bf9;hp=d8781bae9844e64d1340d64ed7b30b76d0d98b08;hpb=7017646bf42cb265b6df539bb6def40b91d2f968;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/MoveProfileFieldAjaxPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/MoveProfileFieldAjaxPage.java index d8781ba..5e8a2bd 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/MoveProfileFieldAjaxPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/MoveProfileFieldAjaxPage.java @@ -23,6 +23,8 @@ import net.pterodactylus.sone.data.Sone; import net.pterodactylus.sone.web.WebInterface; import net.pterodactylus.sone.web.page.FreenetRequest; +import com.google.common.base.Optional; + /** * AJAX page that lets the user move a profile field up or down. * @@ -46,24 +48,21 @@ public class MoveProfileFieldAjaxPage extends JsonPage { // JSONPAGE METHODS // - /** - * {@inheritDoc} - */ @Override protected JsonReturnObject createJsonObject(FreenetRequest request) { Sone currentSone = getCurrentSone(request.getToadletContext()); Profile profile = currentSone.getProfile(); String fieldId = request.getHttpRequest().getParam("field"); - Field field = profile.getFieldById(fieldId); - if (field == null) { + Optional field = profile.getFieldById(fieldId); + if (!field.isPresent()) { return createErrorJsonObject("invalid-field-id"); } String direction = request.getHttpRequest().getParam("direction"); try { if ("up".equals(direction)) { - profile.moveFieldUp(field); + profile.moveFieldUp(field.get()); } else if ("down".equals(direction)) { - profile.moveFieldDown(field); + profile.moveFieldDown(field.get()); } else { return createErrorJsonObject("invalid-direction"); }