Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xxdk-wasm
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
xxdk-wasm
Commits
21a5e15d
Commit
21a5e15d
authored
Jun 2, 2023
by
Richard T. Carback III
Browse files
Options
Downloads
Patches
Plain Diff
suppress error on URL channel share type function
parent
8034fe69
No related branches found
No related tags found
3 merge requests
!127
Modify internal password generation to base it off the user's password
,
!124
Update for single DB cipher object
,
!109
Project/haven beta
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
wasm/channels.go
+7
-2
7 additions, 2 deletions
wasm/channels.go
with
7 additions
and
2 deletions
wasm/channels.go
+
7
−
2
View file @
21a5e15d
...
...
@@ -16,6 +16,8 @@ import (
"sync"
"syscall/js"
jww
"github.com/spf13/jwalterweatherman"
"gitlab.com/elixxir/client/v4/bindings"
"gitlab.com/elixxir/client/v4/channels"
"gitlab.com/elixxir/wasm-utils/exception"
...
...
@@ -951,8 +953,11 @@ func (cm *ChannelsManager) GetShareURL(_ js.Value, args []js.Value) any {
func
GetShareUrlType
(
_
js
.
Value
,
args
[]
js
.
Value
)
any
{
level
,
err
:=
bindings
.
GetShareUrlType
(
args
[
0
]
.
String
())
if
err
!=
nil
{
exception
.
ThrowTrace
(
err
)
return
nil
jww
.
ERROR
.
Printf
(
"ShareURL is broken: %s: %+v"
,
args
[
0
]
.
String
(),
err
)
// exception.ThrowTrace(err)
return
1
}
return
level
...
...
This diff is collapsed.
Click to expand it.
Richard T. Carback III
@carback1
mentioned in commit
f397108e
·
Jun 2, 2023
mentioned in commit
f397108e
mentioned in commit f397108ee93d2f2272a04a4fe2eb84aa44c2af80
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment