unlikeEntry method

Future<int> unlikeEntry(
  1. String shortLink
)

Implementation

Future<int> unlikeEntry(String shortLink) async {
  ModeratorEntry? target = findModeratorEntryByShortLink(shortLink);
  if (target == null) return -1;
  //lets react to this asap
  _tbsCache.remove(shortLink);
  final li = await homeSite?.unlikeEntryToQueue(target);
  if (li == null) return -1;
  return li;
}