Fixed error message to include numbers

This commit is contained in:
Brendon J. Brewer 2019-03-15 11:28:52 +13:00
parent 804f3d205f
commit 02d8b7e5ea

View file

@ -104,7 +104,7 @@ class WunderBar extends React.PureComponent<Props> {
onSubmit(uri, params);
} else {
this.props.doShowSnackBar({
message: __('Invalid LBRY URL entered. Only A-Z, a-z, and - allowed.'),
message: __('Invalid LBRY URL entered. Only A-Z, a-z, 0-9, and - allowed.'),
});
}
@ -120,7 +120,7 @@ class WunderBar extends React.PureComponent<Props> {
onSubmit(uri, params);
} else {
this.props.doShowSnackBar({
message: __('Invalid LBRY URL entered. Only A-Z, a-z, and - allowed.'),
message: __('Invalid LBRY URL entered. Only A-Z, a-z, 0-9, and - allowed.'),
});
}
} catch (e) {