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
9afdf4f0
Commit
9afdf4f0
authored
Feb 01, 2021
by
narinder Rana
Browse files
handle null pointer exception
parent
bfa72c8b
Pipeline
#99361
passed with stage
in 2 minutes and 38 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
app/src/main/java/foundation/e/drive/services/OperationManagerService.java
View file @
9afdf4f0
...
...
@@ -239,6 +239,7 @@ public class OperationManagerService extends Service implements OnRemoteOperatio
public
int
onStartCommand
(
Intent
intent
,
int
flags
,
int
startId
)
{
Log
.
i
(
TAG
,
"onStartCommand()"
);
try
{
CommonUtils
.
setServiceUnCaughtExceptionHandler
(
this
);
Bundle
extras
=
intent
.
getExtras
();
...
...
@@ -293,6 +294,10 @@ public class OperationManagerService extends Service implements OnRemoteOperatio
}
else
{
Log
.
w
(
TAG
,
"Intent's extras is null."
);
}
}
catch
(
Exception
ex
){
Log
.
e
(
"Exception"
,
ex
.
getMessage
());
ex
.
printStackTrace
();
}
return
super
.
onStartCommand
(
intent
,
flags
,
startId
);
}
...
...
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