mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-18 16:53:56 +00:00
fix: wrong commit time for manager, outlined chips
This commit is contained in:
@@ -31,7 +31,9 @@ class GithubAPI {
|
||||
var repo = await github.repositories.getRepository(
|
||||
RepositorySlug(org, repoName),
|
||||
);
|
||||
pushedAt = repo.pushedAt != null ? format(repo.pushedAt!) : '';
|
||||
pushedAt = repo.pushedAt != null
|
||||
? format(repo.pushedAt!, locale: 'en_short')
|
||||
: '';
|
||||
} on Exception {
|
||||
pushedAt = '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user