Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
6d647941
Commit
6d647941
authored
Jun 02, 2015
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
network stream VC: allow keeping up to 100 recently played URLs instead of 15
(cherry picked from commit
63081a97
)
parent
a7444831
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Sources/VLCOpenNetworkStreamViewController.m
Sources/VLCOpenNetworkStreamViewController.m
+1
-1
No files found.
Sources/VLCOpenNetworkStreamViewController.m
View file @
6d647941
...
...
@@ -143,7 +143,7 @@
if
([
_recentURLs
indexOfObject
:
self
.
urlField
.
text
]
!=
NSNotFound
)
[
_recentURLs
removeObject
:
self
.
urlField
.
text
];
if
(
_recentURLs
.
count
>=
1
5
)
if
(
_recentURLs
.
count
>=
1
00
)
[
_recentURLs
removeLastObject
];
[
_recentURLs
addObject
:
self
.
urlField
.
text
];
...
...
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