diff options
Diffstat (limited to 'skinnopacity.c')
-rw-r--r-- | skinnopacity.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/skinnopacity.c b/skinnopacity.c index 0ca03ea..f24b9a4 100644 --- a/skinnopacity.c +++ b/skinnopacity.c @@ -169,6 +169,13 @@ cString cPluginNopacity::SVDRPCommand(const char *Command, const char *Option, i ReplyCode = 250; nopacity->svdrpSwitchRss(); return "Switched to next RSS Feed"; + } else if (!strcasecmp(Command, "STANDALONEFEED")) { + ReplyCode = 250; + bool onOff = nopacity->svdrpToggleStandaloneRss(); + if (onOff) + return "Displaying standalone RSS Feed"; + else + return "Closing standalone RSS Feed"; } ReplyCode = 502; return NULL; |