Telerik.Sitefinity.GenericContent.Model.ContentItem with id (...) is not a draft.
I was going to report a bug, but found a solution to my problem while explaining the issue. Since I bothered typing everything below, I guess I'll just post it anyway. :)
Feel free to move it to another forum.
I got into a weird issue. I create Content blocks, and then try to retrieve their content from C# code.
For example:
ContentItem introBlockItem = App.WorkWith().ContentItems().FirstThat(c => c.Title ==
"FilterSearchIntro"
).Get();
ContentItem introBlockItem = App.WorkWith().ContentItems().FirstThat(c => c.Title ==
"FilterSearchIntro"
&& c.Status == ContentLifecycleStatus.Master).Get();
ContentItem introBlockItem = App.WorkWith().ContentItems().Drafts().FirstThat(c => c.Title ==
"FilterSearchIntro"
).Get();