Hi, first post here, hope this is the right place for my question
I have a technical question about the 'inner workings' of JEvent

I am the maintainer of the jsSocials plugin. This plugin alows you to add social sharing buttons any where in articles or modules / components where the content plugin is triggered.
It is also possible to auto add buttons on top / bottom / readmore positions in Joomla! articles.
The plugin uses public function onContentPrepare($context, &$article, &$params, $page = 0) to add the buttons.
My plugin checks on the $context to make sure that the buttons are only placed on articles (=com_content.article) and not on other components...
One of my plugin users is using JEvent and my plugin is acting strange...
It adds a whole bunch of buttons on several position in the monthly / detail / year, etc view...
When displaying the debug information on the added buttons, I see that $context = com_content.article....
What I would expect is something like com_jevents.monthly etc.
I would really appreciate some insights from your side to understand what is happening here and how to troubleshoot. Would love to see my plugin also handle sites that have JEvent installed correct