Update reaction text for GIFs.

This commit is contained in:
Greyson Parrelli
2021-09-24 09:27:54 -04:00
committed by GitHub
parent 29e697265c
commit 32101f7dda
3 changed files with 17 additions and 7 deletions

View File

@@ -151,9 +151,9 @@ public class SlideDeck {
return null;
}
public @Nullable String getFirstSlideContentType() {
public @Nullable Slide getFirstSlide() {
if (Util.hasItems(slides)) {
return slides.get(0).getContentType();
return slides.get(0);
}
return null;