Oddbean new post about | logout
 @096d2c53 Not sure if it’s related, but there’s an issue where AppIntents framework always try to wrap your image’s file URL inside another file URL, which may triggers an error for exceeding the max length of a file URL, and when that error happens, the image won’t be displayed. 
 @4ad3a7b7 Huh, what code are you using that triggers that? 
 @096d2c53 I use it in an AppEntity’s displayRepresentation.
DisplayRepresentation.Image.init(url:width:height:isTemplate:) 
 @4ad3a7b7 Oh interesting, have you tried the data based initializer and passing it in that way? 
 @096d2c53 Thank you for the tip, now it works perfectly for me. Don’t know how I overlooked that API…