Browse Source

Merge pull request #96162 from passivestar/missing-date

Fix missing project date showing the unix epoch
Rémi Verschelde 1 năm trước cách đây
mục cha
commit
8e80c10704
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/project_manager/project_list.cpp

+ 1 - 1
editor/project_manager/project_list.cpp

@@ -760,7 +760,7 @@ void ProjectList::_create_project_item_control(int p_index) {
 	hb->set_tags(item.tags, this);
 	hb->set_unsupported_features(item.unsupported_features.duplicate());
 	hb->set_project_version(item.project_version);
-	hb->set_last_edited_info(Time::get_singleton()->get_datetime_string_from_unix_time(item.last_edited, true));
+	hb->set_last_edited_info(!item.missing ? Time::get_singleton()->get_datetime_string_from_unix_time(item.last_edited, true) : TTR("Missing Date"));
 
 	hb->set_is_favorite(item.favorite);
 	hb->set_is_missing(item.missing);