We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5489428 commit 268790cCopy full SHA for 268790c
_attachments/lib/couchdb_datasource.js
@@ -11,7 +11,7 @@ IRC.CouchDBDataSource = Ember.Object.extend({
11
day: 1
12
});
13
messagesController.set('date', from);
14
- $.couch.db('irc').view('viewer/messages', {
+ $.couch.db('hubot-storage').view('viewer/messages', {
15
success: function(data) {
16
if (data && data.rows && data.rows.length > 0) {
17
data.rows.forEach(function(row) {
@@ -29,7 +29,7 @@ IRC.CouchDBDataSource = Ember.Object.extend({
29
30
loadDays: function() {
31
var daysController = this.get('daysController');
32
33
34
35
data.rows.forEach(function(doc) {
0 commit comments