Compare commits
	
		
			1 Commits
		
	
	
		
			1.7.4
			...
			jude/fix-o
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					adb9c728f4 | 
@@ -1,6 +1,6 @@
 | 
				
			|||||||
[package]
 | 
					[package]
 | 
				
			||||||
name = "reminder-rs"
 | 
					name = "reminder-rs"
 | 
				
			||||||
version = "1.6.47"
 | 
					version = "1.6.48"
 | 
				
			||||||
authors = ["Jude Southworth <judesouthworth@pm.me>"]
 | 
					authors = ["Jude Southworth <judesouthworth@pm.me>"]
 | 
				
			||||||
edition = "2021"
 | 
					edition = "2021"
 | 
				
			||||||
license = "AGPL-3.0 only"
 | 
					license = "AGPL-3.0 only"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -114,6 +114,8 @@ pub async fn offset(
 | 
				
			|||||||
    #[description = "Number of minutes to offset by"] minutes: Option<isize>,
 | 
					    #[description = "Number of minutes to offset by"] minutes: Option<isize>,
 | 
				
			||||||
    #[description = "Number of seconds to offset by"] seconds: Option<isize>,
 | 
					    #[description = "Number of seconds to offset by"] seconds: Option<isize>,
 | 
				
			||||||
) -> Result<(), Error> {
 | 
					) -> Result<(), Error> {
 | 
				
			||||||
 | 
					    ctx.defer().await?;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    let combined_time = hours.map_or(0, |h| h * HOUR as isize)
 | 
					    let combined_time = hours.map_or(0, |h| h * HOUR as isize)
 | 
				
			||||||
        + minutes.map_or(0, |m| m * MINUTE as isize)
 | 
					        + minutes.map_or(0, |m| m * MINUTE as isize)
 | 
				
			||||||
        + seconds.map_or(0, |s| s);
 | 
					        + seconds.map_or(0, |s| s);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user