mirror of https://github.com/vector-im/riot-web
Merge pull request #2703 from uhoreg/patch-1
Add missing brackets to call to toUpperCasepull/2708/head
commit
f6957aa367
|
@ -52,7 +52,7 @@ function platformFriendlyName() {
|
|||
// Sorry, Linux users: you get lumped into here,
|
||||
// but only because Linux's capitalisation is
|
||||
// normal. We do care about you.
|
||||
return window.process.platform[0].toUpperCase + window.process.platform.slice(1);
|
||||
return window.process.platform[0].toUpperCase() + window.process.platform.slice(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue