subject -> topic: Fix respond_to_message().

This commit is contained in:
Steve Howell
2018-11-15 18:23:17 +00:00
committed by Tim Abbott
parent 82b9f2a3db
commit 68d81cb25b
2 changed files with 7 additions and 3 deletions

View File

@@ -295,6 +295,10 @@ exports.set_topic = function (obj, topic) {
obj.subject = topic;
};
exports.get_topic = function (obj) {
return obj.subject;
};
return exports;
}());