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,
|
|
46
|
-
|
|
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