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
VideoLAN
VLC-iOS
Commits
e16dcf6e
Commit
e16dcf6e
authored
Jun 17, 2015
by
Felix Paul Kühne
Browse files
plex parser: fix typo
parent
35933f8b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Sources/VLCPlexParser.m
View file @
e16dcf6e
...
...
@@ -53,8 +53,7 @@
if
([
response
statusCode
]
!=
200
)
{
NSString
*
responseString
=
[[
NSString
alloc
]
initWithData
:
data
encoding
:
NSUTF8StringEncoding
];
if
([
responseString
rangeOfString
:
@"Unauthorized"
].
location
!=
NSNotFound
)
{
NSString
*
serviceString
=
[
NSString
stringWithFormat
:
@"plex://%@:%@"
,
address
,
port
];
NSString
*
serviceString
=
[
NSString
stringWithFormat
:
@"plex://%@%@"
,
address
,
port
];
NSArray
*
accounts
=
[
SSKeychain
accountsForService
:
serviceString
];
if
(
accounts
)
{
NSDictionary
*
account
=
[
accounts
firstObject
];
...
...
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