File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 24
24
name : Lint Rust
25
25
runs-on : ubuntu-latest
26
26
env :
27
- RUSTUP_TOOLCHAIN : 1.83 .0
27
+ RUSTUP_TOOLCHAIN : 1.84 .0
28
28
steps :
29
29
- uses : actions/checkout@v4
30
30
with :
@@ -97,11 +97,11 @@ jobs:
97
97
matrix :
98
98
include :
99
99
- os : ubuntu-latest
100
- rust : 1.83 .0
100
+ rust : 1.84 .0
101
101
- os : windows-latest
102
- rust : 1.83 .0
102
+ rust : 1.84 .0
103
103
- os : macos-latest
104
- rust : 1.83 .0
104
+ rust : 1.84 .0
105
105
106
106
# Minimum Supported Rust Version = 1.77.0
107
107
- os : ubuntu-latest
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ set -euo pipefail
7
7
#
8
8
# Avoid using rustup here as it depends on reading /proc/self/exe and
9
9
# has problems running under QEMU.
10
- RUST_VERSION=1.83 .0
10
+ RUST_VERSION=1.84 .0
11
11
12
12
ARCH=" $( uname -m) "
13
13
test -f " /lib/libc.musl-$ARCH .so.1" && LIBC=musl || LIBC=gnu
Original file line number Diff line number Diff line change @@ -1589,10 +1589,8 @@ impl Session {
1589
1589
} ;
1590
1590
1591
1591
if self . can_metadata ( ) && self . can_push ( ) {
1592
- let device_token_changed = context
1593
- . get_config ( Config :: DeviceToken )
1594
- . await ?
1595
- . map_or ( true , |config_token| device_token != config_token) ;
1592
+ let device_token_changed =
1593
+ context. get_config ( Config :: DeviceToken ) . await ?. as_ref ( ) != Some ( & device_token) ;
1596
1594
1597
1595
if device_token_changed {
1598
1596
let folder = context
You can’t perform that action at this time.
0 commit comments