Browse Source

Connect to HTTPS PlantUML URL in default

Yuki Takei 6 years ago
parent
commit
0e200cf370
2 changed files with 2 additions and 1 deletions
  1. 1 0
      CHANGES.md
  2. 1 1
      src/client/js/util/markdown-it/plantuml.js

+ 1 - 0
CHANGES.md

@@ -3,6 +3,7 @@
 ## 3.5.12-RC
 ## 3.5.12-RC
 
 
 * Improvement: Use Elasticsearch Alias
 * Improvement: Use Elasticsearch Alias
+* Improvement: Connect to HTTPS PlantUML URL in default
 * Fix: Global Notification doesn't work after updating Webhook URL
 * Fix: Global Notification doesn't work after updating Webhook URL
 * Fix: User Trigger Notification is not be sent when channel is not specified
 * Fix: User Trigger Notification is not be sent when channel is not specified
 
 

+ 1 - 1
src/client/js/util/markdown-it/plantuml.js

@@ -7,7 +7,7 @@ export default class PlantUMLConfigurer {
     this.crowi = crowi;
     this.crowi = crowi;
     const config = crowi.getConfig();
     const config = crowi.getConfig();
 
 
-    this.serverUrl = config.env.PLANTUML_URI || 'http://plantuml.com/plantuml';
+    this.serverUrl = config.env.PLANTUML_URI || 'https://plantuml.com/plantuml';
 
 
     this.generateSource = this.generateSource.bind(this);
     this.generateSource = this.generateSource.bind(this);
   }
   }