mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Identify task (#1839)
* Add identify task * Change type naming * Debounce folder select text input * Add generic slice comparison function
This commit is contained in:
@@ -44,3 +44,12 @@ func (t SQLiteDate) Value() (driver.Value, error) {
|
||||
}
|
||||
return result, nil
|
||||
}
|
||||
|
||||
func (t *SQLiteDate) StringPtr() *string {
|
||||
if t == nil || !t.Valid {
|
||||
return nil
|
||||
}
|
||||
|
||||
vv := t.String
|
||||
return &vv
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user