Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Order CreateRemoteShareOperation and make it possible to get sharing …
Browse files Browse the repository at this point in the history
…errors with new arch
  • Loading branch information
davigonz committed Mar 6, 2019
1 parent 30bfa4e commit 16383c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ public void setData(T data) {
mData = data;
}

public void setHttpPhrase(String httpPhrase) {
mHttpPhrase = httpPhrase;
}

public enum ResultCode {
OK,
OK_SSL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ package com.owncloud.android.lib.resources.shares

import java.util.ArrayList

class ShareParserResult(val shares: ArrayList<RemoteShare>, val parserMessage: String)
class ShareParserResult(val shares: ArrayList<RemoteShare>, val parserMessage: String)

0 comments on commit 16383c9

Please sign in to comment.