| Index: service/datastore/checkfilter.go
|
| diff --git a/service/datastore/checkfilter.go b/service/datastore/checkfilter.go
|
| index 6018a60a3dd0d9956ec31c13120b25fde16d3a1c..fe9bc57f99f3a3ea52e7f8d232b5de783e33090b 100644
|
| --- a/service/datastore/checkfilter.go
|
| +++ b/service/datastore/checkfilter.go
|
| @@ -123,5 +123,6 @@ func (tcf *checkFilter) DeleteMulti(keys []*Key, cb DeleteMultiCB) error {
|
|
|
| func applyCheckFilter(c context.Context, i RawInterface) RawInterface {
|
| inf := info.Get(c)
|
| - return &checkFilter{i, inf.FullyQualifiedAppID(), inf.GetNamespace()}
|
| + ns, _ := inf.GetNamespace()
|
| + return &checkFilter{i, inf.FullyQualifiedAppID(), ns}
|
| }
|
|
|