mirror of https://github.com/halo-dev/halo
parent
9de40a0a1c
commit
e72fe2179a
|
@ -295,21 +295,7 @@ public class InstallController {
|
||||||
properties.put(BlogProperties.BLOG_URL,
|
properties.put(BlogProperties.BLOG_URL,
|
||||||
StringUtils.isBlank(installParam.getUrl()) ? optionService.getBlogBaseUrl() :
|
StringUtils.isBlank(installParam.getUrl()) ? optionService.getBlogBaseUrl() :
|
||||||
installParam.getUrl());
|
installParam.getUrl());
|
||||||
|
|
||||||
Long birthday =
|
|
||||||
optionService.getByPropertyOrDefault(PrimaryProperties.BIRTHDAY, Long.class, 0L);
|
|
||||||
|
|
||||||
if (birthday.equals(0L)) {
|
|
||||||
properties.put(PrimaryProperties.BIRTHDAY, String.valueOf(System.currentTimeMillis()));
|
|
||||||
}
|
|
||||||
|
|
||||||
Boolean globalAbsolutePathEnabled = optionService
|
|
||||||
.getByPropertyOrDefault(OtherProperties.GLOBAL_ABSOLUTE_PATH_ENABLED, Boolean.class,
|
|
||||||
null);
|
|
||||||
|
|
||||||
if (globalAbsolutePathEnabled == null) {
|
|
||||||
properties.put(OtherProperties.GLOBAL_ABSOLUTE_PATH_ENABLED, Boolean.FALSE.toString());
|
properties.put(OtherProperties.GLOBAL_ABSOLUTE_PATH_ENABLED, Boolean.FALSE.toString());
|
||||||
}
|
|
||||||
|
|
||||||
// Create properties
|
// Create properties
|
||||||
optionService.saveProperties(properties);
|
optionService.saveProperties(properties);
|
||||||
|
|
|
@ -33,7 +33,7 @@ class IndexPageRequestTest extends BaseApiTest {
|
||||||
// validate post link
|
// validate post link
|
||||||
Element postTitleLink =
|
Element postTitleLink =
|
||||||
document.body().selectFirst(".content > .post > .post-title > h3 > a");
|
document.body().selectFirst(".content > .post > .post-title > h3 > a");
|
||||||
assertEquals(blogUrl + "/archives/hello-halo", postTitleLink.attr("href"));
|
assertEquals("/archives/hello-halo", postTitleLink.attr("href"));
|
||||||
assertEquals("Hello Halo", postTitleLink.text());
|
assertEquals("Hello Halo", postTitleLink.text());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue