Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv authored Nov 16, 2019
1 parent 016d699 commit d04f6cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/legacy/server/http/version_check.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export function setupVersionCheck(server, config) {

if (versionRequested && versionRequested !== actualVersion) {
throw badRequest(
`Browser client is out of date, please refresh the page ("${versionHeader}" header was "${versionRequested}" but should be "${actualVersion}")`,
`Browser client is out of date, \
please refresh the page ("${versionHeader}" header was "${versionRequested}" but should be "${actualVersion}")`,
{ expected: actualVersion, got: versionRequested }
);
}
Expand Down

0 comments on commit d04f6cd

Please sign in to comment.