add constructor to construct with reader and not only file - needed for URL imort later
This commit is contained in:
parent
60546a7bd7
commit
eb11da53c7
|
@ -43,6 +43,12 @@ public class OpmlImportWorker extends
|
|||
}
|
||||
}
|
||||
|
||||
public OpmlImportWorker(Context context, Reader reader) {
|
||||
super();
|
||||
this.context = context;
|
||||
this.mReader=reader;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ArrayList<OpmlElement> doInBackground(Void... params) {
|
||||
if (AppConfig.DEBUG)
|
||||
|
|
Loading…
Reference in New Issue