Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

Commit

Permalink
Merge pull request #119 from jugend/fix-undefined-var
Browse files Browse the repository at this point in the history
fix undefined createOptions var
  • Loading branch information
samsel committed Dec 30, 2015
2 parents 4770713 + b919d8b commit 20c9b08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ exports.boot = function boot(options, callback) {
try {
Router = require('react-router');
} catch (err) {
if (!Router && createOptions.routes) {
if (!Router && options.routes) {
throw err;
}
}
Expand Down

0 comments on commit 20c9b08

Please sign in to comment.