Skip to content

Commit

Permalink
feed.id looks much better than feed.feedId
Browse files Browse the repository at this point in the history
  • Loading branch information
tschellenbach committed Nov 7, 2014
1 parent 00f100f commit d536848
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ StreamFeed.prototype = {
this.client = client;
this.feedSlug = feedSlug;
this.userId = userId;
this.feedId = feedSlug + ':' + userId;
this.id = feedSlug + ':' + userId;
this.token = token;

this.feedUrl = this.feedId.replace(':', '/');
this.feedTogether = this.feedId.replace(':', '');
this.feedUrl = this.id.replace(':', '/');
this.feedTogether = this.id.replace(':', '');
this.signature = this.feedTogether + ' ' + this.token;

// faye setup
Expand Down

0 comments on commit d536848

Please sign in to comment.