Skip to content

Commit c36189c

Browse files
wip
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
1 parent a330d8d commit c36189c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Diff for: library/src/main/java/com/owncloud/android/lib/common/operations/RemoteOperation.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -297,17 +297,21 @@ public Thread execute(Account account, Context context,
297297
mContext = context.getApplicationContext();
298298
mCallerActivity = null;
299299
mClient = null; // the client instance will be created from
300-
// mAccount and mContext in the runnerThread to create below
301-
300+
// mAccount and mContext in the runnerThread to create below
301+
302302
mListener = listener;
303-
303+
304304
mListenerHandler = listenerHandler;
305-
305+
306306
Thread runnerThread = new Thread(this);
307307
runnerThread.start();
308308
return runnerThread;
309309
}
310310

311+
public OwnCloudClient getClient() {
312+
return mClient;
313+
}
314+
311315
/**
312316
* This is a transitional wrapper around
313317
* {@link #execute(Account, Context, OnRemoteOperationListener, Handler)}

0 commit comments

Comments
 (0)