Ignore link preview descriptions that match the title.

This commit is contained in:
Alan Evans 2020-09-02 13:07:31 -03:00 committed by Cody Henthorne
parent d625740ca4
commit bb708e0aa3

View File

@ -75,6 +75,9 @@ public class LinkPreview {
}
public @NonNull String getDescription() {
if (description.equals(title)) {
return "";
}
return description;
}