refreshAuthorViaHTTP method

Future<List<ModeratorEntry>?> refreshAuthorViaHTTP(
  1. String shortLink
)

Implementation

Future<List<ModeratorEntry>?> refreshAuthorViaHTTP(String shortLink) async {
  if (_io == null) return null;
  return await _io!.refreshAuthor(_server, shortLink).then((hs) async {
    if (hs.isNotEmpty) {
      dataIn += hs.lengthInBytes;
      return updateLatestCapsule(hs, false);
    }
  });
}