Fixed incorrect default argument in TypeScript QrCode.encodeSegments().
This commit is contained in:
parent
566ca1f930
commit
0b89eef361
|
@ -73,7 +73,7 @@ namespace qrcodegen {
|
|||
// between modes (such as alphanumeric and binary) to encode text more efficiently.
|
||||
// This function is considered to be lower level than simply encoding text or binary data.
|
||||
public static encodeSegments(segs: Array<QrSegment>, ecl: QrCode.Ecc,
|
||||
minVersion: int = 1, maxVersion: int = 1,
|
||||
minVersion: int = 1, maxVersion: int = 40,
|
||||
mask: int = -1, boostEcl: boolean = true): QrCode {
|
||||
|
||||
if (!(QrCode.MIN_VERSION <= minVersion && minVersion <= maxVersion && maxVersion <= QrCode.MAX_VERSION)
|
||||
|
|
Loading…
Reference in New Issue