Org level labels in issue labels (#763)
Adding null checks. Minor cleanups. Merge branch 'master' into org-labels-in-issue Fix repo size Add new instances Merge branch 'master' into org-labels-in-issue Add org level labels to issue labels Co-authored-by: opyale <opyale@noreply.codeberg.org> Co-authored-by: M M Arif <mmarif@swatian.com> Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/763 Reviewed-by: opyale <opyale@noreply.codeberg.org>
This commit is contained in:
@@ -262,7 +262,7 @@ public class RepoInfoFragment extends Fragment {
|
||||
|
||||
repoMetaForks.setText(repoInfo.getForks_count());
|
||||
repoMetaWatchers.setText(repoInfo.getWatchers_count());
|
||||
repoMetaSize.setText(FileUtils.byteCountToDisplaySize((int) repoInfo.getSize()));
|
||||
repoMetaSize.setText(FileUtils.byteCountToDisplaySize((int) (repoInfo.getSize() * 1024)));
|
||||
|
||||
repoMetaCreatedAt.setText(TimeHelper.formatTime(repoInfo.getCreated_at(), new Locale(locale), timeFormat, ctx));
|
||||
if(timeFormat.equals("pretty")) {
|
||||
|
||||
Reference in New Issue
Block a user