dreamsoftin / flutter_wordpress

Flutter WordPress API
https://pub.dartlang.org/packages/flutter_wordpress
MIT License
198 stars 122 forks source link

Type int is not a subtype of type 'String' #40

Closed MGD1 closed 4 years ago

MGD1 commented 4 years ago

i am getting this error when trying to fetch post

Capture

GarvMaggu commented 4 years ago

i am getting this error when trying to fetch post

Capture

@MGD1 @SachinGanesh @SurajShettigar This error is caused when the featuredMedia image has a greater height than its width, i.e, it is in portrait. If there are any post which has its featuredMedia as a portrait image, then no post will be fetched and an exception will be thrown, as a workaround, for now, you can do one of these things:

  1. Simply turn fetchFeaturedMedia to false
  2. Change all featured images on your website to landscape.
  3. Remove the orientation property completely from ImageMeta class in media.dart file.