Skip to content

Commit

Permalink
Merge pull request #110 from fogbow/fix-version-bug
Browse files Browse the repository at this point in the history
Cannot retrieve versions from services
  • Loading branch information
fubica authored Jul 8, 2020
2 parents a83146d + 95f9669 commit 344f23a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/version.provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { env } from '../defaults/api.config';

class VersionProvider {
get (endpoint) {
return axios.get(endpoint.concat('/version', { timeout: env.timeout }));
return axios.get(endpoint.concat('/version'), { timeout: env.timeout });
}
}

Expand Down

0 comments on commit 344f23a

Please sign in to comment.