Fixed error message to include numbers #2336

Merged
eggplantbren merged 2 commits from master into master 2019-03-15 01:07:41 +01:00
Showing only changes of commit 02d8b7e5ea - Show all commits

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) {