You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem started sometime around May/June of 2021. The N is often missing despite a publication date newer than the "Since" settings. Problem can be reproduced in a simple test theme list. The prior release (before May/June 2021) works correctly.
The text was updated successfully, but these errors were encountered:
_pubDate = value; at the start of the setter
and OnPropertyChanged("PubDate"); at the end of the setter
were replaced by SetObservableField(ref _pubDate, value); at the end of the setter.
The problem is the _pubDate needs to be set before calling CalcDaysSinceMyPublication() because that function reads the field (can you say spaghetti code).
Move SetObservableField(ref _pubDate, value); (which sets _pubDate) to the start of the setter. It shouldn't hurt to publish the change before doing the other tasks in the setter.
The problem started sometime around May/June of 2021. The N is often missing despite a publication date newer than the "Since" settings. Problem can be reproduced in a simple test theme list. The prior release (before May/June 2021) works correctly.
The text was updated successfully, but these errors were encountered: