Skip to content

Commit

Permalink
backwards condition
Browse files Browse the repository at this point in the history
  • Loading branch information
stbrody committed Oct 11, 2024
1 parent a1e9935 commit a8bfc17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/dispatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class Dispatcher {
const rustCeramic = EnvironmentUtils.useRustCeramic()
this.enableSync = rustCeramic ? false : enableSync

if (!this.enableSync) {
if (this.enableSync) {
const pubsub = new Pubsub(
_ipfs,
topic,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { lastValueFrom } from 'rxjs'
const TOPIC = '/ceramic/test12345'

// Will not pass in V' as there is no pubsub
describeIfV3('TipFetcher test', () => {
describe('TipFetcher test', () => {
jest.setTimeout(1000 * 30)

let dispatcher: Dispatcher
Expand Down

0 comments on commit a8bfc17

Please sign in to comment.