Task names

This commit is contained in:
M66B
2019-01-12 11:48:00 +00:00
parent 167a9e3557
commit 079dc572f0
3 changed files with 8 additions and 8 deletions

View File

@@ -127,7 +127,7 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
}.execute(context, owner, args);
}.execute(context, owner, args, "operation:open:folder");
} else {
Bundle args = new Bundle();
args.putLong("id", operation.message);
@@ -153,7 +153,7 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
protected void onException(Bundle args, Throwable ex) {
Helper.unexpectedError(context, owner, ex);
}
}.execute(context, owner, args);
}.execute(context, owner, args, "operation:open:message");
}
}
}