File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Commit based release not is [release_notes.md](./release_notes.md)
3
3
4
4
Release tags are https://github.com/appium/ruby_lib/releases .
5
5
6
+ ## not released
7
+ - Fix non ` app ` capability behavior
8
+
6
9
## 15.2.1 - 2024-08-03
7
10
- Fix client side timeout in the default http client
8
11
- Bump appium_lib_core 9.2.1+ to apply the fix
Original file line number Diff line number Diff line change @@ -269,9 +269,9 @@ def set_app_path(opts)
269
269
270
270
# return the path exists on the local
271
271
app_path = Driver . get_cap ( @core . caps , 'app' )
272
- return if !app_path . nil? && File . exist? ( app_path )
272
+ return if app_path . nil?
273
+ return if File . exist? ( app_path )
273
274
274
- # The app file is not exact path
275
275
@core . caps [ 'app' ] = self . class . absolute_app_path opts
276
276
end
277
277
You can’t perform that action at this time.
0 commit comments