File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export default class BrowserAccount extends Account {
110110 return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . percent ] )
111111 }
112112 if ( er instanceof CreateBookmarkError ) {
113- return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . bookmark ] )
113+ return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . bookmark . inspect ( ) ] )
114114 }
115115 if ( er instanceof FloccusError ) {
116116 return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) )
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export default class NativeAccount extends Account {
8888 return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . percent ] )
8989 }
9090 if ( er instanceof CreateBookmarkError ) {
91- return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . bookmark ] )
91+ return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) , [ er . bookmark . inspect ( ) ] )
9292 }
9393 if ( er instanceof FloccusError ) {
9494 return i18n . getMessage ( 'Error' + String ( er . code ) . padStart ( 3 , '0' ) )
You can’t perform that action at this time.
0 commit comments