another quick release and another old Gitea instances issue
This commit is contained in:
@ -247,7 +247,12 @@ public class RepoInfoFragment extends Fragment {
|
||||
repoRepoUrlInfo.setText(repoInfo.getHtml_url());
|
||||
repoForksCountInfo.setText(repoInfo.getForks_count());
|
||||
|
||||
tinyDb.putBoolean("hasIssues", repoInfo.getHas_issues());
|
||||
if(repoInfo.getHas_issues() != null) {
|
||||
tinyDb.putBoolean("hasIssues", repoInfo.getHas_issues());
|
||||
}
|
||||
else {
|
||||
tinyDb.putBoolean("hasIssues", true);
|
||||
}
|
||||
|
||||
switch (timeFormat) {
|
||||
case "pretty": {
|
||||
|
Reference in New Issue
Block a user