chore: update base64 and fancy-regex

This commit is contained in:
ThetaDev 2023-01-21 22:28:48 +01:00
parent a706a7011b
commit d8889ed5d4
5 changed files with 17 additions and 6 deletions

View file

@ -2,7 +2,7 @@
use std::collections::BTreeSet;
use crate::util::ProtoBuilder;
use crate::util::{self, ProtoBuilder};
/// YouTube search filter
///
@ -200,7 +200,7 @@ impl SearchFilter {
pb.embedded(8, extras)
}
let b64 = base64::encode(pb.bytes);
let b64 = util::b64_encode(pb.bytes);
urlencoding::encode(&b64).to_string()
}
}