Skip to content

Commit

Permalink
Split signature regular expression into pattern + options
Browse files Browse the repository at this point in the history
  • Loading branch information
0xced committed Nov 14, 2014
1 parent ec51b9e commit 450c89a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions XCDYouTubeKit/Configuration.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PlayerScriptSignatureRegularExpressionPattern</key>
<string>["']signature["']\s*,\s*([^\(]+)</string>
<key>PlayerScriptSignatureRegularExpression</key>
<dict>
<key>Pattern</key>
<string>["']signature["']\s*,\s*([^\(]+)</string>
<key>Options</key>
<!-- NSRegularExpressionCaseInsensitive -->
<integer>1</integer>
</dict>
</dict>
</plist>

0 comments on commit 450c89a

Please sign in to comment.