Remove debug override

This commit is contained in:
calzoneman 2015-09-24 23:50:50 -07:00
parent 20dc871303
commit 1ad41d7e58
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export class FileStore {
save(channelName, data) {
const filename = this.filenameForChannel(channelName);
const fileContents = new Buffer(JSON.stringify(data), 'utf8');
if (fileContents.length > 0*SIZE_LIMIT) {
if (fileContents.length > SIZE_LIMIT) {
return Promise.reject(new ChannelStateSizeError(
'Channel state size is too large', {
limit: SIZE_LIMIT,