Remove leading @ in user search.

This commit is contained in:
eal 2017-11-14 17:03:42 +02:00
parent 55c4818084
commit a5d05bcb10

View file

@ -7,6 +7,7 @@ const UserFinder = {
}),
methods: {
findUser (username) {
username = username[0] === '@' ? username.slice(1) : username
this.loading = true
this.$store.state.api.backendInteractor.externalProfile(username)
.then((user) => {