private void ForumReplyRender(ForumReplyRenderEventArgs e)
        {
            User user = PublicApi.Users.AccessingUser;

            if (Services.Get <IPluginManager>().IsEnabled(this))
            {
                if (!user.IsSystemAccount.GetValueOrDefault(false) && user.Id.HasValue)
                {
                    Injector.Get <ILastReadPostLogic>().UpdateLastReadPost(e.Application.ApplicationId, user.Id.Value, e.ThreadId.GetValueOrDefault(0), e.ForumId.GetValueOrDefault(0), e.Id.GetValueOrDefault(0), e.ContentId, e.Date.GetValueOrDefault(DateTime.MinValue));
                }
            }
        }
        private void ForumReplyRender(ForumReplyRenderEventArgs e)
        {
            User user = PublicApi.Users.AccessingUser;

            if (Services.Get<IPluginManager>().IsEnabled(this))
            {
                if (!user.IsSystemAccount.GetValueOrDefault(false) && user.Id.HasValue)
                {
                    Injector.Get<ILastReadPostLogic>().UpdateLastReadPost(e.Application.ApplicationId, user.Id.Value, e.ThreadId.GetValueOrDefault(0), e.ForumId.GetValueOrDefault(0), e.Id.GetValueOrDefault(0), e.ContentId, e.Date.GetValueOrDefault(DateTime.MinValue));
                }
            }
        }