mirror of
https://github.com/szabodanika/microbin
synced 2024-11-15 05:27:07 +00:00
Reduced QR code size to fit phone screens
This commit is contained in:
parent
5e1fcff979
commit
5854572e87
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ pub fn remove_expired(pastas: &mut Vec<Pasta>) {
|
|||
}
|
||||
|
||||
pub fn string_to_qr_svg(str: &str) -> String {
|
||||
qrcode_generator::to_svg_to_string(str, QrCodeEcc::Low, 512, None::<&str>).unwrap()
|
||||
qrcode_generator::to_svg_to_string(str, QrCodeEcc::Low, 256, None::<&str>).unwrap()
|
||||
}
|
||||
|
||||
pub fn is_valid_url(url: &str) -> bool {
|
||||
|
|
Loading…
Reference in a new issue