Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-Android
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
241
Issues
241
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-Android
Commits
0f5b1e3d
Commit
0f5b1e3d
authored
Oct 13, 2017
by
Geoffrey Métais
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent NPE at app init
parent
233ac609
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vlc-android/src/org/videolan/vlc/VLCApplication.java
vlc-android/src/org/videolan/vlc/VLCApplication.java
+1
-1
No files found.
vlc-android/src/org/videolan/vlc/VLCApplication.java
View file @
0f5b1e3d
...
...
@@ -159,7 +159,7 @@ public class VLCApplication extends Application {
}
public
static
boolean
showTvUi
()
{
return
sTV
||
mSettings
.
getBoolean
(
"tv_ui"
,
false
);
return
sTV
||
(
mSettings
!=
null
&&
mSettings
.
getBoolean
(
"tv_ui"
,
false
)
);
}
public
static
void
runBackground
(
Runnable
runnable
)
{
...
...
Write
Preview
Markdown
is supported
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