Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f52b875 authored by LukeOwncloud's avatar LukeOwncloud
Browse files

added log message for ResultCode.FILE_NOT_FOUND

parent 8261865f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -350,6 +350,8 @@ public class RemoteOperationResult implements Serializable {
            return "Authenticated with a different account than the one updating";
        } else if (mCode == ResultCode.INVALID_CHARACTER_IN_NAME) {
                return "The file name contains an forbidden character";
        } else if (mCode == ResultCode.FILE_NOT_FOUND) {
	  	return "Local file does not exist";
 	}

        return "Operation finished with HTTP status code " + mHttpCode + " (" + (isSuccess() ? "success" : "fail") + ")";