react-native-kookit 0.3.4 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,9 +42,8 @@ class JcifsShareEnumerator {
42
42
  } ?: emptyList()
43
43
 
44
44
  } catch (e: Exception) {
45
- // If JCIFS enumeration fails, return empty list
46
- // The caller can fall back to other methods
47
- emptyList()
45
+ // If JCIFS enumeration fails, throw exception
46
+ throw Exception("Failed to enumerate shares using JCIFS: " + e.message)
48
47
  }
49
48
  }
50
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-kookit",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "React Native module for intercepting volume button presses on iOS and Android, with FTP client functionality",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",