Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
os
eDrive
Commits
d1beeb0d
Commit
d1beeb0d
authored
Feb 04, 2021
by
narinder Rana
Browse files
debugging for intent null or intent action is null
parent
9afdf4f0
Pipeline
#99895
passed with stage
in 3 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/foundation/e/drive/services/OperationManagerService.java
View file @
d1beeb0d
...
...
@@ -242,6 +242,12 @@ public class OperationManagerService extends Service implements OnRemoteOperatio
try
{
CommonUtils
.
setServiceUnCaughtExceptionHandler
(
this
);
if
(
null
==
intent
||
null
==
intent
.
getAction
())
{
String
source
=
null
==
intent
?
"intent"
:
"action"
;
Log
.
e
(
TAG
,
source
+
" was null, flags="
+
flags
+
" bits="
+
Integer
.
toBinaryString
(
flags
));
return
START_STICKY
;
}
Bundle
extras
=
intent
.
getExtras
();
Log
.
d
(
TAG
,
"OperationManagerService recieved "
+(
extras
==
null
?
"null extras"
:
extras
.
size
()+
" operations to perform"
)
);
...
...
tcecyk
@tcecyk
mentioned in issue
e/backlog#1772 (closed)
·
Apr 06, 2021
mentioned in issue
e/backlog#1772 (closed)
mentioned in issue e/backlog#1772
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment