From 6c394c373dde86605ff639efb2e0b89d18a851e5 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 10 May 2020 21:25:06 -0700 Subject: [PATCH] Fixed missing property initialization. --- .../java/net/thauvin/erik/mobibot/commands/ChannelFeed.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/net/thauvin/erik/mobibot/commands/ChannelFeed.kt b/src/main/java/net/thauvin/erik/mobibot/commands/ChannelFeed.kt index b97f260..1211fcb 100644 --- a/src/main/java/net/thauvin/erik/mobibot/commands/ChannelFeed.kt +++ b/src/main/java/net/thauvin/erik/mobibot/commands/ChannelFeed.kt @@ -50,6 +50,10 @@ class ChannelFeed(bot: Mobibot, channel: String) : AbstractCommand(bot) { const val FEED_PROP = "feed" } + init { + initProperties(FEED_PROP) + } + override fun commandResponse( sender: String, login: String,