[CHANGE] Linked decipher to video implementation
This commit is contained in:
parent
e87e1c57f9
commit
972af513f0
3 changed files with 40 additions and 3 deletions
|
|
@ -31,8 +31,13 @@ public partial class CipherDecoder
|
|||
return decoder;
|
||||
}
|
||||
|
||||
public string Decipher(string signatureCipher)
|
||||
public string Decipher(string? signatureCipher)
|
||||
{
|
||||
if (string.IsNullOrEmpty(signatureCipher))
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
var urlBuilder = new StringBuilder();
|
||||
|
||||
var indexStart = signatureCipher.IndexOf("s=", StringComparison.Ordinal);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue