mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-19 23:46:55 +08: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