瀏覽代碼

Fix for the previous commit.

release-8443
hristoterezov 10 年之前
父節點
當前提交
f1fba82b64
共有 2 個檔案被更改,包括 2 行新增2 行删除
  1. 1
    1
      JitsiConference.js
  2. 1
    1
      lib-jitsi-meet.js

+ 1
- 1
JitsiConference.js 查看文件

18
  */
18
  */
19
 
19
 
20
 function JitsiConference(options) {
20
 function JitsiConference(options) {
21
-    if(!options.name || options.name.toLowerCase() === options.name) {
21
+    if(!options.name || options.name.toLowerCase() !== options.name) {
22
         console.error("Invalid conference name (no conference name passed or it"
22
         console.error("Invalid conference name (no conference name passed or it"
23
             + "contains invalid characters like capital letters)!");
23
             + "contains invalid characters like capital letters)!");
24
          return;
24
          return;

+ 1
- 1
lib-jitsi-meet.js 查看文件

19
  */
19
  */
20
 
20
 
21
 function JitsiConference(options) {
21
 function JitsiConference(options) {
22
-    if(!options.name || options.name.toLowerCase() === options.name) {
22
+    if(!options.name || options.name.toLowerCase() !== options.name) {
23
         console.error("Invalid conference name (no conference name passed or it"
23
         console.error("Invalid conference name (no conference name passed or it"
24
             + "contains invalid characters like capital letters)!");
24
             + "contains invalid characters like capital letters)!");
25
          return;
25
          return;

Loading…
取消
儲存