mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-12 05:25:36 +02:00
feat: migrate to dart3
This commit is contained in:
parent
289c6cd7a9
commit
a27dc6ad1c
10 changed files with 17 additions and 17 deletions
|
@ -90,7 +90,7 @@ class GithubAPI {
|
|||
final List<dynamic> commits = response.data;
|
||||
return commits
|
||||
.map(
|
||||
(commit) => (commit['commit']['message']).split('\n')[0] +
|
||||
(commit) => commit['commit']['message'].split('\n')[0] +
|
||||
' - ' +
|
||||
commit['commit']['author']['name'] +
|
||||
'\n' as String,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue