Skip to content

Commit bb7e729

Browse files
authored
fix: LanPortScannerModule accessor from native module (#16)
* fix: LanPortScannerModule accessor from native module * fix: release
1 parent 6b84b0a commit bb7e729

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-lan-port-scanner",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"description": "A simple port scanner for react native.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const LINKING_ERROR =
1010
'- You are not using Expo Go\n';
1111

1212
const LanPortScanner = NativeModules.LanPortScannerModule
13-
? NativeModules.LanPortScanner
13+
? NativeModules.LanPortScannerModule
1414
: new Proxy(
1515
{},
1616
{

0 commit comments

Comments
 (0)